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

/api/v1/email/prospects

10 credits

Page emails already known for a company domain. Cursor-paginated; returns up to 20 contacts per page with first/last name.

Try in Playground

Parameters

NameTypeRequiredDescription
domainstringyesCompany domain as a bare hostname (no scheme, no @). (e.g. microsoft.com)
kindstringyesWhich addresses to return. Accepted values: full (all known emails), verified_only (deliverable only). (e.g. verified_only)
cursorstringnoOpaque pagination cursor. Omit for the first page; pass the previous response's next_cursor for the next.

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/email/prospects?domain=microsoft.com&kind=verified_only"

Example response

{
  "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.

Want to try this endpoint?

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

Get an API key →