Use case
Enrich thousands of records at once without managing per-row API calls. Upload a CSV or JSON file, define what you want back with astruct, and download the enriched results when the job completes. Use it for list building, CRM backfills, and large-scale data refreshes.
Endpoint
Use the people endpoint for lead/person rows:People API Reference
Full request/response schema for
POST /bulk-intelligence/people.Company API Reference
Full request/response schema for
POST /bulk-intelligence/company.Pricing
See Credits & Pricing Guide for credit costs by tier.Before the job starts, Sixtyfour checks that your balance covers the estimated cost. If it doesn’t, the request returns 402 and nothing is charged. The submit response includes
estimated_cost_cents. The completed /job-status response includes charge_amount in cents.Errors
For error responses (400, 402, 403, 422, etc.), see Handling Errors.Tiers
Allowed tiers depend on the endpoint:| Endpoint | Tiers |
|---|---|
/bulk-intelligence/people | micro, low (default), medium, high |
/bulk-intelligence/company | micro, low (default), medium, high |
Request format
Both endpoints takemultipart/form-data with two parts:
| Part | Description |
|---|---|
file | The records to enrich. Accepts .csv, .json, .jsonl, or .ndjson. |
config | A JSON-encoded string describing the enrichment — what to return for each row. |
Limits
| Limit | Value |
|---|---|
| File size | 100 MB |
| Rows per file | 100,000 |
| Config size | 300,000 characters |
| Submissions | 10 per minute per org |
The config object
Submitting a job
Polling for results
PollGET /job-status/{task_id} until status is completed, failed, or cancelled. When the job completes, the response includes a results array of signed download links for the output files plus charge_amount in cents — bulk jobs deliver files, not an inline result.
The results array contains one entry per pipeline stage; the final enriched output is the entry with the highest block_number. Small files also carry an inline results row preview alongside the link — use one or the other, not both.
Download links are signed URLs that expire after 15 minutes — poll again for fresh links — and require your
x-api-key header when fetching.Webhook callback
Pass awebhook_url in the config to receive results via HTTP POST when the job completes, instead of polling. The payload includes signed download URLs for the result files. The signed payload, retry behavior, and verification steps are documented in Outgoing Webhooks.
Webhook URLs must use HTTPS and resolve to a public address. The URL is validated when you submit and again at delivery time.
Idempotency
Send anIdempotency-Key header (up to 255 characters) to make submissions retry-safe. Resubmitting with the same key returns the original job instead of starting a new one:
row_count and estimated_cost_cents are omitted, since the original upload is authoritative.