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

# Status

## Request

#### Path

<ParamField path="exportId" type="string" required>
  Obfuscated exportId returned when queuing an export.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Obfuscated exportId, same value as the `exportId` path parameter.
</ResponseField>

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

<ResponseField name="status" type="string">
  One of `PENDING`, `IN_PROGRESS`, `AVAILABLE`, `EXPIRED`, `FAILED`,
  `INSUFFICIENT_CREDITS` or `NO_RESULTS`.
</ResponseField>

<ResponseField name="progress" type="number">
  Completion ratio between `0` and `1`, rounded to two decimals.
</ResponseField>

<ResponseField name="url" type="string | null">
  Presigned download URL. Only present (non-null) when `status` is `AVAILABLE`.
</ResponseField>

<ResponseExample>
  ```json Response - 200 theme={null}
  {
      "id": "8817263",
      "name": "Example List export",
      "status": "AVAILABLE",
      "progress": 1,
      "url": "https://storage.googleapis.com/bizzy-exports/..."
  }
  ```
</ResponseExample>
