Track a bulk work-email-finding job. Free to poll. Returns status, counts, and a results array of { query, found, email }. Page with next_cursor.
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| job_id | string | yes | The job_id returned by /api/v1/email/find-bulk. (e.g. job_f4n7q1) |
| after | integer | no | Result cursor — start at 0, then page with next_cursor. |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/email/find-bulk-status?job_id=job_f4n7q1"
{
"success": true,
"statusCode": 200,
"message": "Data retrieved successfully",
"errors": null,
"data": { "status": "completed", "total": 1, "resolved": 1, "errors": 0, "next_cursor": 1, "results": [{ "query": { "first_name": "Satya", "last_name": "Nadella", "domain": "microsoft.com" }, "found": true, "email": "satya@microsoft.com" }] }
}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 →