> ## 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.

# Get Export

> Retrieves a single export by its ID. Each export includes information about output files.

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

**HTTP Method:** GET

**URL:** `/api/v1/exports/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**: Information about the requested export with associated files.

**Rate limit:** Once every 10 seconds for unique request.

**Status Codes:**

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

**Sample Request**

```
GET /api/v1/exports/1 HTTP/1.1
Host: platform.riverside.fm
Authorization: BEARER YOUR_API_KEY
```

**Sample Response**

```json theme={null}
{
  "export_id": "1",
  "name": "export_name",
  "project_id": "123",
  "project_name": "Project",
  "studio_id": "666966f708c0fa2cbf9e8322",
  "studio_name": "Main Studio",
  "status": "ready",             
  "created_date": "2025-11-04T13:27:50.814Z",
  "size": 812345678,
  "type": "video",   
  "quality": "2160p 4K", 
  "download_url": "https://platform.riverside.fm/api/v1/download/export/1"
  "error": null
}
```
