Call Detail Records
Get Single CDR
Retrieve the full call detail record for a specific call by its call_id - duration, disposition, caller ID, timestamps, and billing data for a single voice session.
GET
Retrieve a CDR by call ID
Retrieve the full CDR for one completed call. Unlike the list endpoints, the response is
See the CDR overview for the full field glossary and Hangup Causes to decode the hangup fields.
{ data, success } where data is a single object (not an array) - and there is no pagination, summary, or filters block.
Path parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
auth_id | string | Yes | Your master account ID, e.g. MA_XXXXXXXX. |
call_id | string | Yes | The call’s uuid, e.g. aabbccdd-1234-5678-90ab-cdef12345678. |
Edge cases
- Unknown or wrong-format ID: returns
404(nodata). Re-check that you passed theuuidand not the numericid. - Call not yet complete: a CDR exists only after the call ends, so an in-progress call’s
uuidwill not resolve here. Use Live Calls for active calls. - Casing:
Accountis capitalized,cdris lowercase.
Example
cURL
Authorizations
Your Vobiz account Auth ID
Your Vobiz account Auth Token
Path Parameters
Your account Auth ID
Example:
"MA_XXXXXX"
The unique call ID of the completed call.
Example:
"abc123-def456-ghi789"