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

/api/v1/posts/info

10 credits

Full content of one post (returned under data.post). For comments use /posts/comments.

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)

Example request

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

Example response

// live-verified shape — the post lives under data.post
{
  "success": true,
  "statusCode": 200,
  "message": "Data retrieved successfully",
  "errors": null,
  "data": {
    "post": { "entityId": "7487554980032204800", "url": "https://www.linkedin.com/feed/update/...", "text": "Thrilled to share...", "author": { "name": "Microsoft", "url": "https://www.linkedin.com/company/microsoft/" }, "postedAt": "2026-07-20T00:00:00Z", "reactionsCount": 5000, "commentsCount": 200 }
  }
}

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 →