jobId immediately — poll GET /lead-finder/export-jobs/{jobId} for status. Once the job reaches completed status, download the file via GET /lead-finder/export-jobs/{jobId}/download.includeEmail: 50 credits per leadincludePhone: 525 credits per leadincludeNames: 1 credit per lead (full last names)includeContactInfo: Shorthand for email + phone (575 credits/lead)curl --location --request POST 'https://dev.enrich.so/api/v3/lead-finder/export' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"filters": {
"jobLevel": [
"C-Suite",
"VP"
],
"domain": [
"stripe.com",
"vercel.com"
]
},
"maxResults": 500,
"includeEmail": true,
"includeNames": true
}'{
"success": true,
"data": {
"jobId": "ej_a1b2c3d4e5f6a7b8",
"status": "pending",
"estimatedRows": 500,
"estimatedCredits": 25000,
"message": "Export job queued. Poll GET /lead-finder/export-jobs/ej_a1b2c3d4e5f6a7b8 for status."
},
"meta": {
"requestId": "665d2f8b9c5b2a0015d0bc0f"
}
}