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

# Export

Queues an export of a list's active items. The export runs asynchronously; use the
returned `exportId` with the [Exports API](/api-reference/v2/exports/status) to track its
status and download the result.

## Request

#### Path

<ParamField path="listId" type="string" required>
  Obfuscated listId returned by the overview endpoint.
</ParamField>

#### Body

<ParamField body="format" type="string" required>
  Output format. One of `CSV` or `XLSX`.
</ParamField>

<ParamField body="emailEnrichment" type="string" required>
  Email enrichment level. One of `NONE`, `VERIFIED` or `CATCH_ALL`.
</ParamField>

<ParamField body="phoneEnrichment" type="boolean" required>
  Whether to enrich mobile phone numbers.
</ParamField>

<ParamField body="columns" type="string[]">
  The columns to include in the export. When omitted, a default set is used. Invalid
  columns are rejected by the export service.
</ParamField>

<ParamField body="contactsPerCompanyLimit" type="number">
  Maximum number of contacts to include per company (positive integer).
</ParamField>

<RequestExample>
  ```json Body theme={null}
  {
      "format": "CSV",
      "emailEnrichment": "VERIFIED",
      "phoneEnrichment": false,
      "columns": ["name", "vatNumber", "website"]
  }
  ```
</RequestExample>

## Response

<ResponseExample>
  ```json Response - 200 theme={null}
  {
      "success": true,
      "exportId": "8817263",
      "message": "Export queued successfully"
  }
  ```
</ResponseExample>
