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

/api/v1/posts/likes

10 credits

People who reacted to a post + reaction type and total.

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)
startintegernoPagination 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.

Example request

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

Example response

// 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.

Want to try this endpoint?

300 free credits on signup, no card required. That covers 30 calls.

Get an API key →