Create a batch enrichment job by uploading a CSV.
How it works
- Upload a
.csvfile (one column:handleoremail) - Choose the enrichment mode (handle:
raw/full, email:basic) - Use the returned
batch_idto check status and download results
Request
multipart/form-datafile: CSV (max 10MB)- Mode fields depend on whether you’re enriching by
handleoremail
Credits
- Credits are deducted per successfully enriched record
- The credit rate follows the corresponding single-enrichment pricing (handle
raw/full, or email enrichment) - If no data is returned for a record, 0 credits are deducted for that record
Checking completion
Poll GET /public/v1/enrichment/batch/{batch_id}/status/ every 30–60 seconds until the job finishes. Status values:
queued— waiting to startprocessing— actively enriching recordsfinished— all records done; download results viaGET /public/v1/enrichment/batch/{batch_id}/failed— job failedpaused_insufficient_credits— top up credits and call the resume endpoint
This API is polling-based. There are no webhooks or push notifications.
CSV file containing creators to enrich (max 10MB, single column: handle or email)
Social media platform (required for handle-based enrichment)
Enrichment mode: 'raw' or 'full' for handle-based, 'basic' or 'advanced' for email-based
Optional metadata as JSON object (e.g., {"campaign": "Q4 Outreach"})
{ "campaign": "Q4 Outreach" }
Email requirement for handle-based full enrichment. Default: "preferred"
Include lookalike creators for handle-based full enrichment. Default: false
Include audience data for handle-based full enrichment. Default: true
Platforms to exclude from response
curl -i -X POST \
https://api-dashboard.influencers.club/public/v1/enrichment/batch/ \
-H 'Authorization: Bearer <YOUR_API_KEY_HERE>' \
-H 'Content-Type: multipart/form-data' \
-F 'file=(binary)' \
-F platform=instagram \
-F enrichment_mode=full \
-F 'metadata={"campaign":"Q4 Outreach"}' \
-F email_required=preferred \
-F include_lookalikes=false \
-F include_audience_data=true \
-F exclude_platforms=twitter \
-F min_followers=1000{ "batch_id": "string", "status": "string", "created_at": "2019-08-24T14:15:22Z", "platform": "string", "metadata": { "property1": null, "property2": null }, "og_input_number": 0, "type_report": "string", "enrichment_mode": "string", "message": "string" }