> ## 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 detailed information about a specific export.

**HTTP Method**: GET

**URL**: `/api/v3/exports/{exportId}`

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

**Path Parameters**:

| Parameter  | Type   | Description                         |
| ---------- | ------ | ----------------------------------- |
| `exportId` | string | The unique identifier of the export |

**Response**: Single export object with full details

**Rate limit**: Once every 1 second.

**Status Codes**:

* `200 OK` Export retrieval successful.
* `401 Unauthorized` Authentication failed.
* `404 Not Found` Export not found or not accessible.
* `429 Too Many Requests` Rate limit exceeded.

### **Sample Request**

```bash theme={null}
GET /api/v3/exports/exp_123 HTTP/1.1
Host: platform.riverside.com
Authorization: Bearer YOUR_API_KEY
```

### **Sample Response**

```json theme={null}
{
  "export_id": "exp_123",
  "name": "Episode 12 – Final",
  "project_id": "proj789",
  "project_name": "Podcast – 2025",
  "studio_id": "studio456",
  "studio_name": "Main Studio",
  "status": "ready",
  "created_date": "2025-01-20T15:30:00Z",
  "type": "video",
  "quality": "1080p HD",
  "download_url": "https://platform.riverside.fm/api/v3/download/export/exp_123",
  "error": null
}
```

###
