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

# Download Export

> Download a previously requested transaction export

<ParamField header="Authorization" type="string" required>
  Bearer token: `Bearer YOUR_ACCESS_TOKEN`
</ParamField>

<ParamField path="exportId" type="string" required>
  The export ID returned when the export was requested.
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl -X GET '/unified-transactions/export/exp_01abc123/download' \
    -H 'Authorization: Bearer YOUR_ACCESS_TOKEN' \
    --output transactions.pdf
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "info": "Returns the file directly as application/pdf or text/csv depending on the export format. Save the response body to a file."
  }
  ```
</ResponseExample>
