GET/api/v6/callblasting/audios

List pre-recorded audios

Your organization audios with their id, duration and size.

Scope and limits

Scope

API key with the callblasting service enabled

Usage limit

60 requests per minute

Returns your organization pre-recorded audios, with their id (the one you send as audioId), name, source format, duration and size.

Responses

200

Audio catalog.

{
  "success": true,
  "data": {
    "audios": [
      {
        "id": "01J9Z4M7K2QABCDEF5GHTV3WXY",
        "name": "Bienvenida campaña abril",
        "originalName": "bienvenida.mp3",
        "format": "mp3",
        "durationMs": 4200,
        "sizeBytes": 67200,
        "createdAt": "2026-06-23 15:04:05"
      }
    ]
  },
  "meta": {
    "requestId": "8f0c0e2a4b1d4c8fae2b7a91e0c5d3f6",
    "timestamp": "2026-06-23T15:04:05+00:00",
    "responseTimeMs": 1.9
  }
}
401

Invalid or missing credentials.

403

The API key does not have the callblasting service enabled.

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/audios
curl -X GET 'https://developers.hablame.co/api/v6/callblasting/audios' \
  -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.

GET https://developers.hablame.co/api/v6/callblasting/audios

Response

You have not sent a request yet.