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| Name | Type | Required | Description |
|---|---|---|---|
| handle | string | no | Public profile handle — the part after linkedin.com/in/. Resolved to `entityId` automatically at no extra credit cost. Provide `entityId` OR `handle`. (e.g. satyanadella) |
| entityId | string | no | Person 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`. |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/posts/featured?handle=satyanadella"
// 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.
300 free credits on signup, no card required. That covers 30 calls.
Get an API key →