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

/api/v1/email/find

10 credits

Discover a person's work email from their first name, last name, and company domain. Returns the address plus a confidence score.

Try in Playground

Parameters

NameTypeRequiredDescription
first_namestringyesThe person's first name. (e.g. Satya)
last_namestringyesThe person's last name. (e.g. Nadella)
domainstringyesCompany domain as a bare hostname — no scheme, no @, must contain a dot. (e.g. microsoft.com)

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/email/find?first_name=Satya&last_name=Nadella&domain=microsoft.com"

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "errors": null,
  "data": {
    "email": "satya@microsoft.com",
    "found": true,
    "catch_all": false,
    "confidence": "high"
  }
}

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 →