Full company profile — description, LinkedIn URL, universal name, and more.
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| id | string | no | Numeric company ID. Provide id OR name. (e.g. 1035) |
| name | string | no | Company universal name — the slug after linkedin.com/company/. Provide id OR name. (e.g. microsoft) |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/companies/info?id=1035&name=microsoft"
{
"success": true,
"statusCode": 200,
"message": "Data retrieved successfully",
"data": {
"id": "1035",
"name": "Microsoft",
"universalName": "microsoft",
"linkedinUrl": "https://www.linkedin.com/company/microsoft/",
"description": "Every company has a mission..."
},
"errors": null
}Successful responses are wrapped in the standard envelope. The data field carries the actual payload; errors is null on success.