Now out of stealth: the missing link between AI agents and LinkedIn data.
Companies
GET

/api/v1/companies/entity-id

10 credits

Resolve a company slug to the numeric organization id used by the live company endpoints (posts, similar, affiliated, insights). Resolve once, reuse the id.

Try in Playground

Parameters

NameTypeRequiredDescription
slugstringyesCompany public slug — the part after linkedin.com/company/. A full company URL works too. (e.g. microsoft)

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/companies/entity-id?slug=microsoft"

Example response

{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "errors": null,
  "data": {
    "id": 1035,
    "slug": "microsoft"
  }
}

Successful responses are wrapped in the standard envelope. The data field carries the actual payload; errors is null on success.

Available via MCP as companies_entity_id

Add Zooq as an MCP server to Claude Desktop or Cursor and call this tool directly from your agent. See the MCP guide.

Want to try this endpoint?

300 free credits on signup, no card required. That covers 30 calls.

Get an API key →