People who reacted to a post + reaction type and total.
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) |
| start | integer | no | Pagination offset — MUST be a multiple of 10 (0, 10, 20, ...). Upstream pages by page number; the exact start-to-page mapping is still being verified. |
curl -H "X-API-Key: zq_…" \ "https://zooq.dev/api/v1/posts/likes?entityId=7487554980032204800"
// live-verified shape — page-based, not start-based
{
"success": true,
"statusCode": 200,
"message": "Data retrieved successfully",
"errors": null,
"data": {
"page": 1,
"totalPages": 500,
"totalReactions": 5000,
"reactions": [
{ "reactionType": "LIKE", "actor": { "name": "Jane Doe", "headline": "VP Engineering" } }
]
}
}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 →