> ## Documentation Index
> Fetch the complete documentation index at: https://docs.bland.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Call Recording

> Retrieve an audio stream for a call recording.

### Headers

<ParamField header="authorization" type="string" required={true}>
  Your API key for authentication.
</ParamField>

<ParamField header="content-type" type="string" required={false}>
  Audio content type requested: `"audio/mpeg"` (MP3) or `"audio/wav"` (WAV). Defaults to WAV.
</ParamField>

### Path Parameters

<ParamField path="call_id" type="string" required>
  The unique identifier of the call for which you want to retrieve its recording.
</ParamField>

### Query Parameters

<ParamField query="..." type="any" required={false}>
  Any additional query parameters will be passed through to the underlying recording URL.
</ParamField>

### Response

<ResponseField name="data" type="audio stream">
  The audio recording stream of the call, in the requested or default format (WAV).
</ResponseField>

<ResponseField name="errors" type="null|array">
  `null` on success, or an array of error objects if access fails.
</ResponseField>

<ResponseExample>
  ```json Response (not found) theme={null}
  {
    "data": null,
    "errors": [
      {
        "error": "CALL_RECORDING_NOT_FOUND",
        "message": "Call recording not found"
      }
    ]
  }
  ```
</ResponseExample>

***

Docs for agents: [llms.txt](/llms.txt)
