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

/api/v1/posts/comments

10 credits

Threaded comments/replies on a post.

Try in Playground

Parameters

NameTypeRequiredDescription
entityIdstringyesActivity id — bare numeric or urn:li:activity: form, both accepted. Get it from /api/v1/companies/posts — read data.activities[].entityId (person feeds are currently unavailable). (e.g. 7487554980032204800)
sortBystringnoOrdering. Accepted values: relevance (default), date_posted (newest first).
countintegernoResults per page (default 10).
startintegernoPagination offset.

Example request

curl -H "X-API-Key: zq_…" \
  "https://zooq.dev/api/v1/posts/comments?entityId=7487554980032204800"

Example response

// live-verified shape — items live under data.replies
{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "errors": null,
  "data": {
    "replies": [
      { "author": { "name": "Jane Doe", "headline": "VP Engineering" }, "comment": "Congratulations!", "createdAt": "2026-07-20T01:00:00Z", "edited": false, "engagements": { "reactions": 12 }, "permalink": "https://www.linkedin.com/feed/update/..." }
    ]
  }
}

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 →