Companies
GET

/api/v1/companies/info

10 credits

Full company profile — description, LinkedIn URL, universal name, and more.

Try in Playground

Parameters

NameTypeRequiredDescription
idstringnoNumeric company ID. Provide id OR name. (e.g. 1035)
namestringnoCompany universal name — the slug after linkedin.com/company/. Provide id OR name. (e.g. microsoft)

Example request

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

Example response

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