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

/api/v1/companies/posts

10 credits

A company's recent posts. data.activities[].entityId is the activity id consumed by /posts/info, /posts/comments, /posts/likes. Keyed by the numeric organization id: pass `slug` and Zooq resolves it for you at no extra credit cost, or pass `id` from /api/v1/companies/entity-id to skip the lookup.

Try in Playground

Parameters

NameTypeRequiredDescription
slugstringnoCompany public slug — the part after linkedin.com/company/. Resolved to `id` automatically at no extra credit cost. Provide `id` OR `slug`. (e.g. microsoft)
idstringnoNumeric organization id from /api/v1/companies/entity-id. NOT the org_ id from /companies/universal-name-to-id — that is the dataset namespace and the live endpoints reject it. Provide `id` OR `slug`. (e.g. 1035)
startintegernoPagination offset.

Example request

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

Example response

// live-verified shape — entityId is a BARE NUMERIC activity id; no nextCursor field
{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "errors": null,
  "data": {
    "activities": [
      { "entityId": "7487554980032204800", "url": "https://www.linkedin.com/feed/update/urn:li:activity:7487554980032204800/", "text": "We are excited to announce...", "author": { "name": "Microsoft", "url": "https://www.linkedin.com/company/microsoft/" }, "header": null, "engagements": { "reactions": 1200, "comments": 80, "reposts": 40 }, "mediaContent": [] }
    ]
  }
}

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

Want to try this endpoint?

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

Get an API key →