CallsAround API
REST API for lines, escalation chains, calls (with media), usage, SMS/voice notifications, and webhook subscriptions. Auth: Authorization: Bearer ca_(test|live)_…. Outbound webhooks: X-CallsAround-Signature: t=,v1=<hex hmac-sha256(${t}.${raw body})> — verify with the reference client (5-min tolerance); retries: 5 attempts with 1/5/25/120-minute backoff, then dead-letter; events: call.completed, emergency.dispatched, line.health_changed, call.uncovered, call.failed, usage.threshold, usage.exceeded, message.taken.
Every response is a JSON envelope: { ok: true, data, request_id } on success, { ok: false, error: { code, message, request_id } } on failure. Rate limit: 120 requests/minute per key. Agency keys act on their own org and all descendant client orgs.
Connecting a CRM or job platform (Zapier)
No native connector is required for most tools: point a webhook subscription at a Zapier Catch Hook (Webhooks by Zapier) and map the fields into any app with Zapier write actions — e.g. Albi (Create Contact / Create Project / Create Project Note), or thousands of others.
Recipe:
- In Zapier, create a Zap with trigger Webhooks by Zapier → Catch Hook; copy the hook URL.
- In the CallsAround dashboard (Developers → Add webhook subscription) or via
POST /webhooks, subscribe that URL tomessage.taken(leads with content) and/orcall.completed(every call; a taken message rides along indata.message). - Map
data.contact_name,data.callback_e164,data.address,data.problem, anddata.urgencyinto your app's action fields.
Zapier's Catch Hook does not verify signatures; if you need verification, use Zapier's Catch Raw Hook with a Code step, or any endpoint of your own (see the signature scheme under Webhook events below).
Meta
Liveness and this document. No authentication.
Liveness probe (no auth)
-
application/json
-
application/json
curl https://api.callsaround.com/api/v1/ping
{
"ok": true,
"data": {
"pong": true,
"at": "2026-07-14T18:03:12.345Z"
},
"request_id": "req_a1b2c3d4"
}
Success envelope { ok, data, request_id }