Overview
| ENDPOINT | /admin/api/nexbro/v1/call/call-detail-record/{call_uuid} |
| Methods Supported | GET |
| Description | This endpoint is used to get call detail record of specific call. |
Parameters
The following parameters are required to fetch the call detail record for the specified call.
| Parameter Name | Parameter Requirement | Parameter Data Type | Example | Description |
| call_uuid | required | String | ca3a834a-d4a7-48ab-a7fc-7a20fd577884 | The uuid of the call. |
Response Codes
The following response codes are returned by the API.
| HTTP CODE | Summary | Description |
| 404 | HTTP_NOT_FOUND | Returned when the specified call history cannot be found or is not available yet. |
| 200 | HTTP_OK | Returned when the call detail record request is processed successfully. |
| 500 | INTERNAL_SERVER_ERROR | Returned when an unexpected error occurs on the server while processing the request. |
Example
cURL
Copy to clipboard
curl --location 'https://your-nexbro-domain.com/admin/api/nexbro/v1/call-detail-record/6075d782-1fd2-40a4-bcfe-d29638f2d598' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: sk_live_tTD9RQfK2q2pdsqIEIca53y3gkGll1brp0mWLMeG6vnmrDHYZ1ThOupslBHg'
Response
Copy to clipboard
{
"message": "Success.",
"data": {
"call_uuid": "6075d782-1fd2-40a4-bcfe-d29638f2d598",
"caller_id_number": "7087033114",
"caller_id_name": "Outbound Call",
"caller_destination": "234",
"destination_number": "8556900900",
"direction": "outbound",
"start_time": "2026-01-16 12:14:19",
"answer_time": "2026-01-16 12:14:29",
"end_time": "2026-01-16 12:15:04",
"duration": "00:00:45",
"status": "ANSWERED",
"hangup_cause": "Call was terminated normally by either party.",
"call_flow": [
{
"destination_number": "8556900900",
"forwarding_enabled": false,
"start_time": "2026-01-16 12:14:19",
"answer_time": "2026-01-16 12:14:29",
"last_hold_time": null,
"end_time": "2026-01-16 12:15:04",
"duration": "00:00:45",
"answer_duration": "00:00:35",
"time_to_answer": "00:00:10",
"hold_duration": null
},
{
"destination_number": "234",
"forwarding_enabled": false,
"start_time": "2026-01-16 12:14:19",
"answer_time": "2026-01-16 12:14:21",
"last_hold_time": "2026-01-16 12:14:51",
"end_time": "2026-01-16 12:15:04",
"duration": "00:00:45",
"answer_duration": "00:00:43",
"time_to_answer": "00:00:02",
"hold_duration": "00:00:04"
}
],
"audio_stats": {
"inbound": {
"mos": "4.46",
"raw_bytes": "380120",
"flaw_total": "63",
"media_bytes": "378228",
"packet_count": "2210",
"mean_interval": "20.36",
"largest_jb_size": "0",
"cng_packet_count": "0",
"jitter_loss_rate": "0.00",
"dtmf_packet_count": "0",
"jitter_burst_rate": "0.00",
"skip_packet_count": "51",
"flush_packet_count": "11",
"media_packet_count": "2199",
"quality_percentage": "96.00",
"jitter_max_variance": "114.35",
"jitter_min_variance": "0.39",
"jitter_packet_count": "0"
},
"outbound": {
"raw_bytes": "329724",
"media_bytes": "329724",
"packet_count": "1917",
"cng_packet_count": "0",
"rtcp_octet_count": "0",
"dtmf_packet_count": "0",
"rtcp_packet_count": "0",
"skip_packet_count": "0",
"media_packet_count": "1917"
},
"error_log": [
{
"start": "2026-01-16 12:14:25.000",
"stop": "2026-01-16 12:14:28.000",
"flaws": "3",
"duration_seconds": 3.011
},
{
"start": "2026-01-16 12:14:29.000",
"stop": "2026-01-16 12:14:32.000",
"flaws": "6",
"duration_seconds": 3.441
},
{
"start": "2026-01-16 12:14:33.000",
"stop": "2026-01-16 12:14:36.000",
"flaws": "6",
"duration_seconds": 3.176
},
{
"start": "2026-01-16 12:14:39.000",
"stop": "2026-01-16 12:14:43.000",
"flaws": "9",
"duration_seconds": 3.61
},
{
"start": "2026-01-16 12:14:44.000",
"stop": "2026-01-16 12:14:48.000",
"flaws": "10",
"duration_seconds": 3.38
},
{
"start": "2026-01-16 12:14:51.000",
"stop": "2026-01-16 12:14:54.000",
"flaws": "2",
"duration_seconds": 3.097
},
{
"start": "2026-01-16 12:14:56.000",
"stop": "2026-01-16 12:14:59.000",
"flaws": "10",
"duration_seconds": 3.619
},
{
"start": "2026-01-16 12:15:00.000",
"stop": "2026-01-16 12:15:04.000",
"flaws": "16",
"duration_seconds": 4.066
}
]
},
"technical": {
"dtmf_type": "info",
"read_codec": "PCMU",
"read_rate": "8000",
"write_codec": "PCMU",
"write_rate": "8000",
"local_media_ip": "10.1.1.159",
"local_media_port": "18570",
"remote_media_ip": "10.1.1.11",
"remote_media_port": "8008",
"audio_media_flow": "sendrecv",
"post_dial_delay": "444"
}
}
}