# AnyAPI LinkedIn Post Reactions

> AnyAPI LinkedIn Post Reactions is a paid API for AI agents from api.getanyapi.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Scrapes and returns the reactions (likes, loves, etc.) on a specific LinkedIn post

## Facts

- Endpoint: POST https://api.getanyapi.com/v1/run/linkedin.post_reactions
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/anyapi-linkedin-post-reactions-07db31e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_z7MmwzgdWP21aURlPtkN2

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability anyapi-linkedin-post-reactions-07db31e3 -d '<json body>'
```

Example prompt: Can you pull all the reactions on this LinkedIn post — https://www.linkedin.com/posts/someuser_activity-123456789 — and tell me the breakdown of reaction types and total count?

## When to prefer this

Use this endpoint when you need to programmatically retrieve reaction data from a specific LinkedIn post without a LinkedIn API key or OAuth flow. Ideal for social listening, competitive analysis, or engagement tracking on LinkedIn content. Prefer this over the official LinkedIn API when you need quick, pay-per-use access without setting up OAuth credentials or managing subscriptions.

## Known failure modes

- Invalid or non-existent LinkedIn post URL returns an error
- Private or restricted LinkedIn post returns access denied or empty result
- LinkedIn rate limiting or anti-scraping measures cause a timeout or failure
- Malformed post ID causes a 400 bad request
- Post has been deleted and returns empty data

## How this service works

1,200+ scraping and data APIs behind one key. Pay per request in real dollars. No subscriptions, nothing monthly, nothing to cancel.

## Output

Returns a JSON object containing reaction data for the specified LinkedIn post, including total reaction counts and breakdown by reaction type (like, celebrate, support, love, insightful, curious, etc.), and potentially a list of users who reacted.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "title": "LinkedIn post reactions input",
     "example": {
      "limit": 3,
      "postUrl": "https://www.linkedin.com/posts/williamhgates_PLACEHOLDER"
     },
     "required": [
      "postUrl"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 25,
       "minimum": 1,
       "description": "Maximum number of results to return (1–25, default 25). You are billed per result returned, so a lower limit costs less."
      },
      "postUrl": {
       "type": "string",
       "description": "Full URL of the LinkedIn post to fetch reactions from (e.g. https://www.linkedin.com/posts/satyanadella_activity-7200000000000000000-abcd)."
      },
      "reactionType": {
       "type": "string",
       "description": "Optional reaction type to filter by: ALL, LIKE, PRAISE, EMPATHY, APPRECIATION, INTEREST, or ENTERTAINMENT (e.g. LIKE)."
      }
     },
     "additionalProperties": false
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "required": [
      "output",
      "provider",
      "costUsd"
     ],
     "properties": {
      "items": {
       "type": "integer",
       "description": "Number of result rows returned. For per-result SKUs the per-item cost is charged against this count; for input-priced SKUs the charge is per submitted input, independent of this count."
      },
      "output": {
       "type": "object",
       "title": "LinkedIn post reactions output",
       "required": [
        "found",
        "data"
       ],
       "properties": {
        "data": {
         "oneOf": [
          {
           "type": "null"
          },
          {
           "type": "object",
           "required": [
            "items"
           ],
           "properties": {
            "items": {
             "type": "array",
             "items": {
              "type": "object"
             },
             "description": "Reaction records: reaction type plus the reactor's name, headline, and profile URL."
            }
           },
           "additionalProperties": false
          }
         ]
        },
        "found": {
         "type": "boolean"
        }
       },
       "additionalProperties": false
      },
      "costUsd": {
       "type": "number",
       "description"
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/anyapi-linkedin-post-reactions-07db31e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.getanyapi.com](https://www.zero.xyz/host/api.getanyapi.com/llms.txt)
