Extended company profile (data nested under a `company` object).
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| id | string | yes | Numeric company ID. (e.g. 1035) |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/companies/info-v2?id=1035"
{
"success": true,
"statusCode": 200,
"message": "Data retrieved successfully",
"data": {
"company": {
"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.