Developer Documentation

Everything you need to integrate Lobby Pilot into your applications and workflows.

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?'
});