# Apify LinkedIn Post Scraper (stableapify.dev)

> Apify LinkedIn Post Scraper (stableapify.dev) is a paid API for AI agents from stableapify.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Scrapes LinkedIn posts, profiles, and search results — including likes and comments — via pay-per-call x402 micropayment on the Apify supreme_coder/linkedin-post actor.

## Facts

- Endpoint: POST https://stableapify.dev/api/actors/supreme_coder/linkedin-post/call
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/apify-linkedin-post-scraper-stableapify-dev-fe6e4dee
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_lfMEY33UePL9mZRcKNW3D

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 apify-linkedin-post-scraper-stableapify-dev-fe6e4dee -d '<json body>'
```

Example prompt: Scrape all LinkedIn posts from https://www.linkedin.com/in/satya-nadella/ with deep scraping enabled so I get likes and comments too, and limit it to 50 posts per source.

## When to prefer this

Choose this endpoint when you need to extract LinkedIn post content, engagement data, or profile posts at scale via a simple pay-per-call micropayment model without managing Apify credentials directly. Prefer this over direct Apify API access when you want x402/USDC micropayment billing and don't want to set up an Apify account. Best for agents needing structured LinkedIn data for competitive analysis, influencer monitoring, or content research.

## Known failure modes

- Invalid or inaccessible LinkedIn URL returns empty results or error
- LinkedIn rate limiting or blocking may cause partial results
- Private profiles or restricted content returns no posts
- scrapeUntil date in wrong format may cause unexpected behavior
- limitPerSource set too low may return fewer posts than expected
- LinkedIn login-gated content not accessible without authentication

## How this service works

Search Apify Store actors, start actor runs, and fetch results over x402 and MPP.

## Output

Returns an array of LinkedIn post objects including post text, author details, publication date, engagement metrics (likes, comments, shares when available), and media attachments. With deepScrape enabled, comment threads and reaction counts are included. With rawData enabled, unprocessed scraped data is returned directly from Apify's dataset.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "urls",
    "deepScrape",
    "rawData"
   ],
   "properties": {
    "urls": {
     "type": "array",
     "items": {
      "type": "string"
     },
     "description": "Supported URLs: Linkedin post search URL, Linkedin user or company profile URL, Linkedin post URL"
    },
    "rawData": {
     "type": "boolean",
     "default": false,
     "description": "Push the scraped data directly to the dataset without any processing and filtering. This might be useful if you are looking for some missing data in the dataset"
    },
    "deepScrape": {
     "type": "boolean",
     "default": true,
     "description": "Get more information such as likes, comments etc"
    },
    "scrapeUntil": {
     "type": "string",
     "description": "Use this field if you want to only scrape posts newer than given date"
    },
    "limitPerSource": {
     "type": "integer",
     "maximum": 9007199254740991,
     "minimum": -9007199254740991,
     "description": "Limit number of posts scraped per source URL, leave empty for unlimited"
    }
   },
   "description": "Normalized actor input. See field descriptions for the simplified shape; native Apify input also accepted (passed through).",
   "additionalProperties": {}
  },
  "options": {
   "type": "object",
   "properties": {
    "build": {
     "type": "string",
     "maxLength": 100,
     "minLength": 1
    },
    "memory": {
     "type": "integer",
     "maximum": 32768,
     "minimum": 128
    },
    "maxItems": {
     "type": "integer",
     "maximum": 100000,
     "minimum": 1
    }
   },
   "description": "Optional Apify run options.",
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/apify-linkedin-post-scraper-stableapify-dev-fe6e4dee/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stableapify.dev](https://www.zero.xyz/host/stableapify.dev/llms.txt)
