GET
/api/v6/callblasting/audiosList 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.
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.429RATE_TPS_EXCEEDEDYou exceeded your organization quota for this endpoint.