GET
/
v1
/
recordings
/
{call_id}
curl --request GET \
  --url https://api.bland.ai/v1/recordings/{call_id} \
  --header 'authorization: <authorization>'
{
  "data": null,
  "errors": [
    {
      "error": "CALL_RECORDING_NOT_FOUND",
      "message": "Call recording not found"
    }
  ]
}

Headers

authorization
string
required

Your API key for authentication.

content-type
string

Audio content type requested: "audio/mpeg" (MP3) or "audio/wav" (WAV). Defaults to WAV.

Path Parameters

call_id
string
required

The unique identifier of the call for which you want to retrieve its recording.

Query Parameters

...
any

Any additional query parameters will be passed through to the underlying recording URL.

Response

data
audio stream

The audio recording stream of the call, in the requested or default format (WAV).

errors
null|array

null on success, or an array of error objects if access fails.

{
  "data": null,
  "errors": [
    {
      "error": "CALL_RECORDING_NOT_FOUND",
      "message": "Call recording not found"
    }
  ]
}