Push leads in from any CRM, form, or Zapier — and stream call results, bookings, warm leads, and opt-outs back out via signed webhooks.
Create an API key from your account under Profile → CRM Integrations → API Keys, then send it as a Bearer token on every request:
Authorization: Bearer ldk_your_key_hereBase URL: https://leadialer.com/api/v1 — all endpoints are HTTPS-only and scoped to your account.
POST /api/v1/leads
Content-Type: application/json
{
"firstName": "Jane",
"lastName": "Doe",
"phone": "+15551234567", // required
"email": "jane@example.com",
"propertyAddress": "123 Main St",
"propertyCity": "Austin",
"propertyState": "TX",
"propertyZip": "78701",
"notes": "From website form",
"campaignId": 42 // optional — one of your campaigns
}Returns 201 with the created lead, 409 if the phone is a duplicate in that campaign or on your Do Not Call list.
GET /api/v1/leads?status=active&page=1&limit=50
GET /api/v1/leads?phone=+15551234567
GET /api/v1/leads/123Add webhook endpoints under Profile → CRM Integrations → Outgoing Webhooks. Events POST JSON to your endpoint with an X-Leadialer-Event header and an X-Leadialer-Signature header (hex HMAC-SHA256 of the raw body using your endpoint's signing secret).
{
"event": "appointment.booked",
"timestamp": "2026-07-18T15:30:00.000Z",
"data": {
"appointmentId": 88,
"leadId": 123,
"leadName": "Jane Doe",
"scheduledAt": "2026-07-21T19:00:00.000Z",
"timezone": "America/Chicago",
"source": "ai_call"
}
}Other events: call.completed (outcome, lead score, summary), lead.warm (score above 50), lead.opted_out (lead texted STOP — remove them from your CRM campaigns too).
/api/v1/leads, with header Authorization: Bearer ldk_… and your lead fields as JSON.Step-by-step guides for specific tools: Zapier, Salesforce, Podio, REsimpli, and InvestorFuse — or browse all integrations, including the native Follow Up Boss, GoHighLevel, and HubSpot connectors that need no code at all.
Ready to connect your CRM? Sign in and open your integrations settings to create an API key and add webhook endpoints.
Open CRM Integrations