# GET /reports/{report_id}/download-url

**Get a CSV file for a report**

Returns a link to a CSV file for a report.

Only returned for reports that are `ready`. This means Paddle has completed processing the report and it's ready to download.

The link returned is not a permanent link. It expires after 3 minutes.

**Required permissions:** `report.read`

## Path parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `report_id` | string | required | Paddle ID of the report entity. |

## Response (200)

- `meta`: object (required) — Information about this response.
  - `request_id`: string (required) — Unique ID for the request relating to this response. Provide this when contacting Paddle support about a specific request.
- `data`: object (required)
  - `url`: string (required) — URL of the requested resource.

### Response example

```json
{
  "data": {
    "url": "https://reports.paddle.com/transactions-10889-2024-04-15-08-21-37.csv"
  },
  "meta": {
    "request_id": "91899157-4d2a-432c-aa5b-041bb6266b55"
  }
}
```
