Submit a bulk email-verification job (up to 1000 addresses). POST a JSON body; returns a job_id to poll via /api/v1/email/verify-bulk-status. Billed at 10 credits per address submitted.
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| emails | string | yes | JSON body field: an array (1-1000) of email addresses to verify. Billing is per address SUBMITTED (10 credits each), counted before the upstream drops duplicates/blanks — so de-dupe your list first to avoid paying for repeats. (e.g. ["satya@microsoft.com", "amy.hood@microsoft.com"]) |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/email/verify-bulk?emails=%5B%22satya%40microsoft.com%22%2C+%22amy.hood%40microsoft.com%22%5D"
// POST body: { "emails": ["satya@microsoft.com", "amy.hood@microsoft.com"] }
{
"success": true,
"statusCode": 202,
"message": "Job accepted",
"errors": null,
"data": { "job_id": "job_v9k2p8" }
}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 →