Page emails already known for a company domain. Cursor-paginated; returns up to 20 contacts per page with first/last name.
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| domain | string | yes | Company domain as a bare hostname (no scheme, no @). (e.g. microsoft.com) |
| kind | string | yes | Which addresses to return. Accepted values: full (all known emails), verified_only (deliverable only). (e.g. verified_only) |
| cursor | string | no | Opaque pagination cursor. Omit for the first page; pass the previous response's next_cursor for the next. |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/email/prospects?domain=microsoft.com&kind=verified_only"
{
"success": true,
"statusCode": 200,
"message": "Data retrieved successfully",
"errors": null,
"data": {
"domain": "microsoft.com",
"kind": "verified_only",
"count": 2,
"next_cursor": "cur_p9otuvk86s1no",
"prospects": [
{ "email": "satya@microsoft.com", "first_name": "Satya", "last_name": "Nadella" },
{ "email": "amy.hood@microsoft.com", "first_name": "Amy", "last_name": "Hood" }
]
}
}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 →