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

/api/v1/email/find-by-profile

10 credits

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

Parameters

NameTypeRequiredDescription
urlstringyesA professional profile URL or its bare public handle. (e.g. satyanadella)

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/email/find-by-profile?url=satyanadella"

Example response

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

Want to try this endpoint?

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

Get an API key →