/
Get Batch Enrichment Stat...
Check the current processing status of a batch enrichment job.
What you get
- Current state (e.g., queued/running/completed/failed)
- Progress indicators (processed vs remaining), when available
Credits
- 0 credits (status only)
Security
Bearer
GET
curl -i -X GET \
'https://api-dashboard.influencers.club/public/v1/enrichment/batch/{batch_id}/status/' \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>'Current status of the batch job (processing, finished, failed, queued, paused_insufficient_credits)
Total number of credits used in the batch
Estimated completion timestamp based on current progress (null if unavailable)
Response
{ "batch_id": "string", "status": "string", "total_rows": 0, "processed_rows": 0, "success_count": 0, "failed_count": 0, "started_at": "2019-08-24T14:15:22Z", "metadata": { "property1": null, "property2": null }, "credits_used": "string", "estimated_completion": "2019-08-24T14:15:22Z", "status_message": "string" }