Resolve a company's universal name (the slug in linkedin.com/company/<name>) to its numeric company ID.
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| universalName | string | yes | The company's universal name — the slug after linkedin.com/company/. (e.g. microsoft) |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/companies/universal-name-to-id?universalName=microsoft"
{
"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.