REST + GraphQL APIs, signed webhooks, and SDKs in TypeScript and Python. Every surface of AdClosr is programmable.
Every AdClosr endpoint uses consistent resource naming, cursor pagination, and ISO-8601 timestamps. Errors are RFC-7807. Rate limits are bucketed per-tenant.
curl -X POST https://api.adclosr.com/v1/ai/voice/calls \
-H "Authorization: Bearer $ADCLOSR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"lead_id": "lead_8KQp2",
"agent": "buyer-qualification",
"script_version": "2026-06"
}'
{
"id": "call_4FbR9",
"status": "queued",
"estimated_dial_at": "2026-06-27T18:14:02Z",
"transcript_url": null
}All webhooks are HMAC-SHA256 signed with your endpoint secret and idempotency keys. Replay-safe with at-least-once delivery and exponential backoff.
Get a developer sandbox, free API keys, and direct access to our DX team.