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

# Get Call Recording

> Retrieve audio recording for a completed call session.

### Headers

<ParamField header="x-api-key" type="string" required>
  API key used for authenticating requests to the API.
</ParamField>

### Path Parameters

<ParamField path="callSid" type="string" required>
  The Twilio Call SID of the call whose recording you want.
</ParamField>

### Response Fields

<ResponseField name="Content-Type" type="string">
  Indicates the MIME type of the streamed content, which is 'audio/mpeg' for MP3 audio files.
</ResponseField>

<ResponseField name="Content-Disposition" type="string">
  Describes how the content should be handled by the browser; set to 'inline' with a filename indicating the name of the downloaded or played file.
</ResponseField>

### Response

An audio/mpeg file (MP3) is streamed back. You can download or play it in the browser.

<ResponseExample>
  ```json theme={null}
  HTTP/1.1 200 OK 
  Content-Type: audio/mpeg 
  Content-Disposition: inline;
  filename="exampleRecordingSid.mp3" 
  ```
</ResponseExample>
