---
title: "Get Call Recording"
api: "GET /v1/api/calls/recordings/{callSid}"
description: "Retrieve audio recording for a completed call session."
---

> **For AI agents:** the complete documentation index is at [llms.txt](/llms.txt). Append `.md` to any page URL for its markdown version.

### Headers  
<ParamField header="x-workspace-id" type="string" required>
The unique identifier of the workspace being accessed.
</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 
  HTTP/1.1 200 OK 
  Content-Type: audio/mpeg 
  Content-Disposition: inline;
  filename="exampleRecordingSid.mp3" 
  ```
</ResponseExample>
