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

/api/v1/profile/certifications

10 credits

Certifications (certifications slice of the profile record). An empty array is legitimate — some profiles list none.

Try in Playground

Parameters

NameTypeRequiredDescription
idstringnoStable profile id (prsn_...). Get it from /api/v1/profile/username-to-urn — read data.id. Provide id OR handle. (e.g. prsn_7meo9q4v5sr2i)
handlestringnoPublic profile handle. Provide id OR handle. (e.g. kevinisrael)

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/profile/certifications?id=prsn_7meo9q4v5sr2i&handle=kevinisrael"

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Profile retrieved successfully",
  "errors": null,
  "data": {
    "id": "prsn_7meo9q4v5sr2i",
    "handle": "kevinisrael",
    "certifications": [
      { "name": "Academy Accreditation - Databricks Fundamentals", "authority": "Databricks", "company": { "name": "Databricks", "logo": "https://media.licdn.com/dms/image/..." }, "start": { "year": 2024, "month": 11 }, "end": { "year": 2025, "month": 11 } },
      { "name": "Team Foundation Server", "authority": "Microsoft", "company": { "name": "Microsoft", "logo": "https://media.licdn.com/dms/image/..." } }
    ]
  }
}

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 →