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

# Introduction

With our Exports API, you can track the status of an export and retrieve its download URL.

## Lifecycle

Exports are queued from the [Lists API](/api-reference/v2/lists/export), which returns an
`exportId`. Use that id with the [status](/api-reference/v2/exports/status) endpoint to poll
the export until it is ready, then download it from the returned `url`.

## Status values

| Status                 | Description                                                |
| ---------------------- | ---------------------------------------------------------- |
| `PENDING`              | The export is queued and waiting to start.                 |
| `IN_PROGRESS`          | The export is being generated.                             |
| `AVAILABLE`            | The export is ready; `url` contains a download link.       |
| `EXPIRED`              | The export is no longer available for download.            |
| `FAILED`               | The export failed to generate.                             |
| `INSUFFICIENT_CREDITS` | The export could not complete due to insufficient credits. |
| `NO_RESULTS`           | The list produced no exportable results.                   |

## Authorization

The Public API token is team-scoped. You can only track exports that belong to your team;
requesting one from another team returns `404`.
