Skip to main content
POST
/
v2
/
lists
/
{listId}
/
export
{
    "format": "CSV",
    "emailEnrichment": "VERIFIED",
    "phoneEnrichment": false,
    "columns": ["name", "vatNumber", "website"]
}
{
    "success": true,
    "exportId": "8817263",
    "message": "Export queued successfully"
}
Queues an export of a list’s active items. The export runs asynchronously; use the returned exportId with the Exports API to track its status and download the result.

Request

Path

listId
string
required
Obfuscated listId returned by the overview endpoint.

Body

format
string
required
Output format. One of CSV or XLSX.
emailEnrichment
string
required
Email enrichment level. One of NONE, VERIFIED or CATCH_ALL.
phoneEnrichment
boolean
required
Whether to enrich mobile phone numbers.
columns
string[]
The columns to include in the export. When omitted, a default set is used. Invalid columns are rejected by the export service.
contactsPerCompanyLimit
number
Maximum number of contacts to include per company (positive integer).
{
    "format": "CSV",
    "emailEnrichment": "VERIFIED",
    "phoneEnrichment": false,
    "columns": ["name", "vatNumber", "website"]
}

Response

{
    "success": true,
    "exportId": "8817263",
    "message": "Export queued successfully"
}