Developer Documentation
Everything you need to integrate Lobby Pilot into your applications and workflows.
Quick Start
Get Started in Minutes
1
Get API Keys
Sign up and generate your API credentials from the dashboard.
2
Install SDK
npm install @lobbypilot/sdk or use our REST API directly.
3
Make Your First Call
Initialize the client and create your first AI voice agent.
JavaScript
import LobbyPilot from '@lobbypilot/sdk';
const client = new LobbyPilot({
apiKey: 'your-api-key'
});
const agent = await client.agents.create({
name: 'Reception AI',
voice: 'professional-female',
greeting: 'Hello, how can I help you today?'
});
API Reference
Complete REST API documentation with examples.
View Docs โSDKs & Libraries
Official SDKs for JavaScript, Python, and more.
View Docs โWebhooks
Real-time event notifications for your app.
View Docs โAuthentication
API keys, OAuth, and security best practices.
View Docs โAnalytics API
Access call data and insights programmatically.
View Docs โTesting
Sandbox environment and testing tools.
View Docs โ