Threaded comments/replies on a post.
Try in Playground| Name | Type | Required | Description |
|---|---|---|---|
| entityId | string | yes | Activity 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) |
| sortBy | string | no | Ordering. Accepted values: relevance (default), date_posted (newest first). |
| count | integer | no | Results per page (default 10). |
| start | integer | no | Pagination offset. |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/posts/comments?entityId=7487554980032204800"
// 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.
300 free credits on signup, no card required. That covers 30 calls.
Get an API key →