LinkedIn API

LinkedIn Post reactions API

List who reacted to a LinkedIn post - reactor name, profile URL, job title, and reaction type. Lead-gen grade.

POST/v1/run/linkedin.post_reactions
Uptime
100.00%
30d · 42 calls
Requests
43
30d · weekly, last 12 wks
Response
3.4s
median · 30d

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "items": [
      {
        "actor": {
          "id": "a1b2c3d4",
          "linkedinUrl": "https://example.com/page",
          "name": "Example title",
          "pictureUrl": "https://example.com/image.jpg",
          "position": "example"
        },
        "postId": "a1b2c3d4",
        "reactionType": "general"
      }
    ]
  },
  "found": true
}
Response interface
interface LinkedinPostReactionsResponse {
  data: {
    items: {
      actor: {
        id?: string;
        linkedinUrl?: string;
        name: string;
        pictureUrl?: string;
        position?: string;
      };
      postId?: string;
      reactionType: string;
    }[];
  } | null;
  found: boolean;
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-16 · uptime and latency measured over 30d
POST /v1/run/linkedin.post_reactions
curl -X POST https://api.getanyapi.com/v1/run/linkedin.post_reactions \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"limit":5,"url":"https://www.linkedin.com/posts/satyanadella_today-were-bringing-skills-to-copilot-for-activity-7475945433668694017--kvG"}'
FieldTypeExample value
Request body
urlstring"https://www.linkedin.com/posts/satyanadella_today-were-bringing-skills-to-copilot-for-activity-7475945433668694017--kvG"URL of the LinkedIn post to list reactions for (a /posts/...-activity-... or /feed/update/urn:li:activity:... link).
limitinteger5Maximum number of reactions to return (1-100, default 100).
Response
dataobject
data.itemsobject[]Reactions on the post, one record per reactor.
data.items[].actorobjectThe reactor - the person or company that reacted.
data.items[].actor.idstringLinkedIn member or company id of the reactor. Populated whenever the provider has data for the entity.
data.items[].actor.linkedinUrlstringCanonical LinkedIn profile or company URL of the reactor. Populated whenever the provider has data for the entity.
data.items[].actor.namestringFull name of the reactor (or company name). Populated whenever the provider has data for the entity.
data.items[].actor.pictureUrlstringProfile picture URL of the reactor.
data.items[].actor.positionstringReactor's current job title / headline (or follower count for a company). Populated whenever the provider has data for the entity.
data.items[].postIdstringLinkedIn URN of the post that was reacted to. Populated whenever the provider has data for the entity.
data.items[].reactionTypestringReaction kind (e.g. LIKE, PRAISE, EMPATHY, INTEREST, APPRECIATION, ENTERTAINMENT).
foundboolean
Price
Price per requestUSD$0.005
Price /1k reqUSD$5.00

FAQ

About the LinkedIn Post reactions API

The AnyAPI LinkedIn Post reactions API returns LinkedIn post reactions data as normalized JSON from one POST call to /v1/run/linkedin.post_reactions. List who reacted to a LinkedIn post - reactor name, profile URL, job title, and reaction type. Lead-gen grade. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $5 per 1,000 requests, in US dollars with no subscription and no monthly minimum. Over the last 30 days, 100.0% of LinkedIn post reactions calls through AnyAPI succeeded, with a median response time of 3.4 seconds across 42 measured calls.

It costs from $5 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

List who reacted to a LinkedIn post - reactor name, profile URL, job title, and reaction type. Lead-gen grade. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.

Over the last 30 days, 100.0% of LinkedIn post reactions calls through AnyAPI succeeded, with a median response time of 3.4 seconds across 42 measured calls. These are AnyAPI's own measurements of traffic through the gateway, recomputed continuously, not a published service-level target.