Identify a person and their current company from a professional profile URL (or handle), then find their work email — resolves name + domain for you.
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| url | string | yes | A professional profile URL or its bare public handle. (e.g. satyanadella) |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/email/find-by-profile?url=satyanadella"
{
"success": true,
"statusCode": 200,
"message": "Data retrieved successfully",
"errors": null,
"data": {
"email": "satya@microsoft.com",
"found": true,
"catch_all": false,
"confidence": "high",
"first_name": "Satya",
"last_name": "Nadella",
"domain": "microsoft.com",
"company": "Microsoft",
"url": "https://linkedin.com/in/satyanadella"
}
}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 →