Certifications (certifications slice of the profile record). An empty array is legitimate — some profiles list none.
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| id | string | no | Stable profile id (prsn_...). Get it from /api/v1/profile/username-to-urn — read data.id. Provide id OR handle. (e.g. prsn_7meo9q4v5sr2i) |
| handle | string | no | Public profile handle. Provide id OR handle. (e.g. kevinisrael) |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/profile/certifications?id=prsn_7meo9q4v5sr2i&handle=kevinisrael"
{
"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.
300 free credits on signup, no card required. That covers 30 calls.
Get an API key →