Resolve the person and company behind a BUSINESS email address. Public/role/disposable mailboxes are rejected (422, no charge) before any work runs.
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| string | yes | A professional working mailbox. Public providers (gmail/outlook/…), role accounts (info@, support@), disposable and relay addresses are rejected with 422 (no credits charged). (e.g. satya@microsoft.com) |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/email/reverse?email=satya%40microsoft.com"
{
"success": true,
"statusCode": 200,
"message": "Data retrieved successfully",
"errors": null,
"data": {
"email": "satya@microsoft.com",
"found": true,
"confidence": "high",
"person": { "full_name": "Satya Nadella", "headline": "Chairman and CEO at Microsoft", "title": "Chairman and CEO", "url": "https://linkedin.com/in/satyanadella", "location": "Redmond, Washington", "industry": "Software Development", "is_premium": true },
"current_company": { "name": "Microsoft", "slug": "microsoft", "website": "microsoft.com", "industry": "Software Development", "staff_count": 221000 }
}
}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 →