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| Name | Type | Required | Description |
|---|---|---|---|
| first_name | string | yes | The person's first name. (e.g. Satya) |
| last_name | string | yes | The person's last name. (e.g. Nadella) |
| domain | string | yes | Company domain as a bare hostname — no scheme, no @, must contain a dot. (e.g. microsoft.com) |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/email/find?first_name=Satya&last_name=Nadella&domain=microsoft.com"
{
"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.
300 free credits on signup, no card required. That covers 30 calls.
Get an API key →