- Download Batch Enrichment CSV (Recommended)
Create Batch Enrichment
Get Batch Enrichment Status
Resume Batch Enrichment
Download Batch Enrichment Results (Direct)
Download Batch Enrichment...
Download the enriched CSV dataset via a temporary presigned URL. This is the recommended endpoint for downloading CSV results.
Compared to the direct download endpoint, this returns a short-lived URL that lets you download the file directly from storage — faster and more reliable for large files.
Requirements
- Batch must be in
finishedstatus - Results file must have been generated
Output format
- CSV only — for JSON output, use the direct download endpoint (
GET /public/v1/enrichment/batch/{batch_id}/) with?format=json
Response
download_url— temporary URL (valid for a limited time)expires_in— seconds until the URL expiresexpires_at— expiration timestamp
Error Responses
Every error response shares the canonical shape {"error": <message>, "error_code": <slug>, ...}. Branch programmatically on error_code rather than parsing error.
400 Bad Request(error_code: "batch_not_ready") — batch not completed yet;current_statusis included in the body400 Bad Request(error_code: "no_results") — batch finished but produced no rows400 Bad Request(error_code: "results_not_ready") — batch finished but the results file is still being assembled404 Not Found(error_code: "batch_not_found") — invalid batch ID or batch does not belong to client503 Service Unavailable(error_code: "feature_disabled") — presigned-URL downloads are currently disabled; use the direct download endpoint
Credits
- 0 credits (download only)
Security
Bearer
GET
curl -i -X GET \
'https://api-dashboard.influencers.club/public/v1/enrichment/batch/{batch_id}/download/' \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>'Response
{ "download_url": "http://example.com", "filename": "string", "expires_in": 0, "expires_at": "string", "batch_id": "string", "total_results": 0, "invalid_records": 0 }