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

# Download Export File

> Download the media file of an exported edit.

<Warning>
  **This endpoint is deprecated.** Please migrate to the [v3 Download Export File](/endpoints-reference/v3/download-export-file) endpoint.
</Warning>

**HTTP Method**: GET

**URL**: `/api/v2/download/export/{export_id}`

**Authentication**: Requires API Key in the request header.

**Path Parameters**:

* `export_id` ID of the export to retrieve. To find this value, visit the project page, located the export under the ‘export’ tab and click “Copy ID” in the three dots menu.

**Response**: The media file.

**Rate limit**: Once every 10 seconds per unique request

**Status Codes**:

* `200 OK` Recording retrieval successful.
* `401 Unauthorized` Authentication failed.
* `404 Not Found` Recording not found.

### **Sample Request**

```md theme={null}
GET /api/v2/download/export/{export_id} HTTP/1.1
Host: platform.riverside.fm
Authorization: BEARER YOUR_API_KEY
```

### **Sample Response**

```md theme={null}
connection: keep-alive 
content-disposition: attachment; filename="export_name.wav" 
content-type: audio/x-wav 
date: Thu,04 Jul 2024 13:08:17 GMT 
keep-alive: timeout=5 
transfer-encoding: chunked 
x-powered-by: Express 
x-ratelimit-limit: 1 
x-ratelimit-remaining: 0 
x-ratelimit-reset: 180
```
