Now out of stealth: the missing link between AI agents and LinkedIn data.
Email
GET

/api/v1/email/verify-bulk

10 credits

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

Parameters

NameTypeRequiredDescription
emailsstringyesJSON 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"])

Example request

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"

Example response

// 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.

Want to try this endpoint?

300 free credits on signup, no card required. That covers 30 calls.

Get an API key →