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

# Details

## Request

#### Path

<ParamField path="id" type="string" required>
  ID of the export. This is the ID that was returned when you queued the export (see [exports endpoint](../lists/export) in the Lists API).
</ParamField>

## Response

<ResponseField name="id" type="number">
  ID of the export.
</ResponseField>

<ResponseField name="name" type="string">
  Name of the export.
</ResponseField>

<ResponseField name="status" type="string">
  Status of the export. Can be one of the following:

  * `PENDING`: The export is pending and will be processed in the background.
  * `IN_PROGRESS`: The export is in progress.
  * `AVAILABLE`: The export is available for download.
  * `EXPIRED`: The export has expired and is no longer available for download (available for 7 days after completion).
  * `FAILED`: The export failed.
  * `INSUFFICIENT_CREDITS`: The export failed because the user has insufficient credits.
  * `NO_RESULTS`: The export failed because there are no results to export.
</ResponseField>

<ResponseField name="progress" type="number">
  Progress of the export. Number between 0 and 1 (2 decimal places).
</ResponseField>

<ResponseField name="url" type="string">
  URL of the export file. Only available when the export status is `AVAILABLE`.
</ResponseField>

<ResponseExample>
  ```json Response - 200 theme={null}
  {
    "id": 1234567890,
    "name": "Example Export",
    "status": "COMPLETED",
    "progress": 1.00,
    "url": "https://bizzy.ams3.digitaloceanspaces.com/prod/files/bizzy-example-export.csv"
  }
  ```
</ResponseExample>
