- Download Batch Enrichment Results (Direct)
Create Batch Enrichment
Get Batch Enrichment Status
Resume Batch Enrichment
Download Batch Enrichment CSV (Recommended)
Download Batch Enrichment...
Download the final enriched dataset after processing is complete.
Tip: For CSV downloads, consider using the recommended endpoint
GET /public/v1/enrichment/batch/{batch_id}/download/instead — it returns a presigned URL for faster, more reliable downloads. Use this endpoint if you need JSON output or as a fallback.
Requirements
- Batch must be in
finishedstatus - Results file must have been generated
Output formats
- CSV (default) — omit
formator pass?format=csv - JSON — pass
?format=jsonto receive a JSON array where each object has: -input_value— the original input (handle or email) -status— enrichment status for that record -enrichment_data— the enriched creator data
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 client500 Server Error(error_code: "service_error") — results file could not be retrieved from storage; safe to retry
Credits
- 0 credits (download only)
Security
Bearer
GET
curl -i -X GET \
'https://api-dashboard.influencers.club/public/v1/enrichment/batch/{batch_id}/?format=csv' \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>'Response
- text/csv
- application/json
string