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

/api/v1/posts/featured

10 credits

A person's activity feed (there is no separate 'featured' filter — returns the feed). Keyed by the person entityId: pass `handle` and Zooq resolves it for you at no extra credit cost, or pass `entityId` from /api/v1/profile/entity-id to skip the lookup.

Try in Playground

Parameters

NameTypeRequiredDescription
handlestringnoPublic profile handle — the part after linkedin.com/in/. Resolved to `entityId` automatically at no extra credit cost. Provide `entityId` OR `handle`. (e.g. satyanadella)
entityIdstringnoPerson entityId from /api/v1/profile/entity-id or /api/v1/profile/enrich. NOT the prsn_ id from /profile/username-to-urn — that is the dataset namespace and the live endpoints reject it. Provide `entityId` OR `handle`.

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/posts/featured?handle=satyanadella"

Example response

// documented shape - Live API; live-unverified (outage)
{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "errors": null,
  "data": {
    "activities": [
      { "id": "urn:li:activity:...", "url": "https://www.linkedin.com/feed/update/...", "text": "Thrilled to share...", "author": { "entityId": "prsn_...", "handle": "satyanadella", "fullName": "Satya Nadella" }, "postedAt": "2026-07-20T00:00:00Z", "reactionsCount": 5000, "commentsCount": 200, "repostsCount": 120, "media": [] }
    ],
    "nextCursor": "..."
  }
}

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 →