Skip to main content
GET
/
api
/
v1
/
status
/
call
Get Live Call Status
curl --request GET \
  --url https://sa.dialgen.ai/api/v1/status/call \
  --header 'Authorization: Bearer <token>'
{
  "callId": "call_clxabc123...",
  "status": "ONGOING",
  "startTime": "2025-11-15T14:30:01.123Z",
  "phoneNumber": "+15551234567",
  "contactId": "contact_clx789ghi...",
  "batchId": null,
  "error": null,
  "duration": null,
  "recordingUrl": null
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Obtain your API key from the Dialgen API Keys dashboard at https://sa.dialgen.ai/api-keys

Query Parameters

callId
string
required

The ID returned from the POST /api/v1/call/dial endpoint

Example:

"call_clxabc123..."

Response

Call status retrieved successfully

callId
string
status
enum<string>
Available options:
SCHEDULED,
ONGOING,
COMPLETED,
MISSED,
FAILED
startTime
string<date-time>
phoneNumber
string
contactId
string
batchId
string | null
error
string | null
duration
number | null
recordingUrl
string | null