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

/api/v1/email/reverse

10 credits

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

Parameters

NameTypeRequiredDescription
emailstringyesA 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)

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/email/reverse?email=satya%40microsoft.com"

Example response

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

Want to try this endpoint?

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

Get an API key →