Comprehensive Documentation
Get started quickly with our comprehensive API documentation, code examples, and integration guides. Our docs are designed for developers, by developers.
From simple REST API calls to complex MCP integrations, we provide the tools and documentation you need to build powerful interview experiences.
Quick Start Example
// Create an AI interviewer const interviewer = await fetch('/api/interviewers', { method: 'POST', headers: { 'Authorization': 'Bearer YOUR_API_KEY', 'Content-Type': 'application/json' }, body: JSON.stringify({ name: 'User Research Interview', template: 'qualitative_research', voice_enabled: true }) }); // Start an interview const interview = await fetch('/api/interviews', { method: 'POST', body: JSON.stringify({ interviewer_id: interviewer.id, participant_email: 'user@example.com' }) });