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

/api/v1/g/skill-lookup

10 credits

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

Parameters

NameTypeRequiredDescription
idstringyesStable skill id (skl_...). Get it from /api/v1/g/title-skills-lookup — read data[].id. (e.g. skl_1a2b3c4d5e6f)

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/g/skill-lookup?id=skl_1a2b3c4d5e6f"

Example response

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

Want to try this endpoint?

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

Get an API key →