Resolve one skill by its stable skl_ id — returns the display name and normalized name. Get the id from /api/v1/g/title-skills-lookup (skill search).
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| id | string | yes | Stable skill id (skl_...). Get it from /api/v1/g/title-skills-lookup — read data[].id. (e.g. skl_1a2b3c4d5e6f) |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/g/skill-lookup?id=skl_1a2b3c4d5e6f"
{
"success": true,
"statusCode": 200,
"message": "Data retrieved successfully",
"errors": null,
"data": { "id": "skl_1a2b3c4d5e6f", "name": "Machine Learning", "normalized_name": "machine-learning" }
}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 →