Companies
GET

/api/v1/companies/universal-name-to-id

10 credits

Resolve a company's universal name (the slug in linkedin.com/company/<name>) to its numeric company ID.

Try in Playground

Parameters

NameTypeRequiredDescription
universalNamestringyesThe company's universal name — the slug after linkedin.com/company/. (e.g. microsoft)

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/companies/universal-name-to-id?universalName=microsoft"

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "data": {
    "id": "1035",
    "universalName": "microsoft"
  },
  "errors": null
}

Successful responses are wrapped in the standard envelope. The data field carries the actual payload; errors is null on success.