Companies
GET

/api/v1/companies/info-v2

10 credits

Extended company profile (data nested under a `company` object).

Try in Playground

Parameters

NameTypeRequiredDescription
idstringyesNumeric company ID. (e.g. 1035)

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/companies/info-v2?id=1035"

Example response

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