GET
/api/v6/callblasting/calls/{id}Call status
Call status and the history of all its attempts.
Scope and limits
Scope
API key with the callblasting service enabled
Usage limit
120 requests per minute
Returns a call status and the history of its attempts: whether it was answered, duration, hangup cause, recording and dialed digits. You can only access calls from your organization.
Path parameters
idstringrequired
Call id returned when it was created.
Responses
200
Call status and its attempts.
{
"success": true,
"data": {
"id": "cb_9f2c0e2a1d8b",
"to": "573001234567",
"clientReference": "campania-abril-0012",
"status": "success",
"attemptsCount": 1,
"attempts": [
{
"attempt": 1,
"status": "completed",
"answered": true,
"audioPlayed": true,
"durationTotal": 18,
"durationAir": 12,
"hangupCause": 16,
"causeText": "Normal Clearing",
"recorded": false,
"dtmf": null,
"startedAt": "2026-06-23 15:04:06",
"answeredAt": "2026-06-23 15:04:09",
"endedAt": "2026-06-23 15:04:21"
}
],
"createdAt": "2026-06-23 15:04:05"
},
"meta": {
"requestId": "8f0c0e2a4b1d4c8fae2b7a91e0c5d3f6",
"timestamp": "2026-06-23T15:05:00+00:00",
"responseTimeMs": 3.1
}
}401
Invalid or missing credentials.
404
No call exists with that id for your organization.
429
Request limit exceeded.
Possible errors
Codes this endpoint can return in error.code. The full detail lives in the catalog.
401
See the full catalogAUTH_REQUIREDNo Bearer token was sent, and every call requires one.401AUTH_INVALID_KEYThe API key is not recognized: wrong format, revoked or expired.401AUTH_SERVICE_NOT_ALLOWEDThe key is not allowed to use the service behind this endpoint.404NOT_FOUNDThe path you requested does not exist in this API.429RATE_TPS_EXCEEDEDYou exceeded your organization quota for this endpoint.