Track a bulk people-enrichment job. Free to poll. Returns status, counts, a not_found list, and profiles keyed to your exact inputs. Page with next_cursor.
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| job_id | string | yes | The job_id returned by /api/v1/profile/enrich-bulk. (e.g. job_3xk9p2) |
| after | integer | no | Result cursor — start at 0, then pass the response's next_cursor to page. |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/profile/enrich-bulk-status?job_id=job_3xk9p2"
{
"success": true,
"statusCode": 200,
"message": "Data retrieved successfully",
"errors": null,
"data": { "status": "completed", "total": 2, "resolved": 2, "errors": 0, "next_cursor": 2, "not_found": [], "profiles": { "satyanadella": { "id": "prsn_pgvv42ri57uei", "first_name": "Satya" } } }
}Successful responses are wrapped in the standard envelope. The data field carries the actual payload; errors is null on success.
300 free credits on signup, no card required. That covers 30 calls.
Get an API key →