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

id
stringrequired
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.

See the full catalog
GET /api/v6/callblasting/calls/{id}
curl -X GET 'https://developers.hablame.co/api/v6/callblasting/calls/{id}' \
  -H 'Accept: application/json' \
  -H 'Authorization: Bearer hk_YOUR_API_KEY'

Try-It

Run the request against the real API with your own API key.

The key is used only in your browser for this request. It is not stored nor sent anywhere else.

Parameters

Call id returned when it was created.

GET https://developers.hablame.co/api/v6/callblasting/calls/{id}

Response

You have not sent a request yet.