LinkedIn Company Posts Scraper API - Newest Posts, Exact Counts avatar

LinkedIn Company Posts Scraper API - Newest Posts, Exact Counts

Pricing

from $1.50 / 1,000 job (full posting)s

Go to Apify Store
LinkedIn Company Posts Scraper API - Newest Posts, Exact Counts

LinkedIn Company Posts Scraper API - Newest Posts, Exact Counts

The newest posts a LinkedIn company page shows publicly, about ten per page: full text, exact reaction and comment counts, media type, reshare origin, post URL. A page with no posts is free.

Pricing

from $1.50 / 1,000 job (full posting)s

Rating

0.0

(0)

Developer

Blackcube

Blackcube

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

9 hours ago

Last modified

Share

The LinkedIn suite

Read the newest posts a LinkedIn company page shows publicly, with exact reaction and comment counts and the media on each. No login, no cookies, no proxy to configure — it reads the pages LinkedIn shows to anyone. Failures are free: a closed job, a missing page or a page only members can see costs nothing and returns a row saying which.

Exact numbers, not display numbers. LinkedIn's page says "3M followers" or "10,001+ employees"; the rows carry 2,789,187 and 232,762.

Quick start

  1. Press Start — the defaults are a working run.
  2. Replace them with your own company slugs or URLs (microsoft, https://www.linkedin.com/company/apify/ and showcase links all work).
  3. Take the dataset as JSON, CSV or Excel, or via the API. Every row has a type; the free coverage row says what was asked for and what arrived.

What people use it for

  • Brand and competitor monitoring. What a company page is posting and how each post performs, with exact reaction and comment counts, on a schedule.
  • Engagement analysis. Who is commenting on a post and what they say, from the comments LinkedIn shows publicly.
  • Feeding an AI agent or workflow. One flat schema, a type on every row, and a free coverage row that says what was asked for and what arrived.

What the rows look like

A post row

{
"type": "post",
"activityId": "7498030724533522432",
"url": "https://www.linkedin.com/posts/microsoft_august-2026-ai-powered-discovery-activity-7498030724533522432-IzKE",
"author": { "name": "Microsoft", "url": "https://www.linkedin.com/company/microsoft", "type": "company", "followers": 29006766 },
"text": "Curiosity drives discovery, sparking questions about how we can better understand our world ...",
"publishedAt": "2026-08-25T14:57:11.372Z",
"reactions": 745,
"comments": 98,
"mediaType": "article",
"article": { "title": "August 2026: AI-powered discovery", "url": "https://www.linkedin.com/pulse/..." },
"commentsShownCount": 10
}

reactions and comments are exact. With comments on, each comment LinkedIn shows on the page (about ten) is its own comment row with the commenter, their profile URL, the text, the date and its like count.

What it costs

You pay forPrice
Each post delivered$3.00 per 1,000 posts

Free, always: a job that has closed, a company, post or article that does not exist, a page LinkedIn only shows to signed-in members, a malformed URL, every error row, the coverage row and the run summary. A run that reads nothing costs nothing.

Set Cost ceiling (USD) to stop any run before it passes a number you choose; the free summary row reports what the run actually spent.

FAQ

Do I need a LinkedIn login, cookies or a proxy?

No. This Actor reads the pages LinkedIn shows to anyone without an account, and it never signs in, never sends a cookie and never uses a session. Everything is handled for you and there is nothing to buy on top. Measured 2026-09-02: a full default run read 25 pages from an ordinary IP with no proxy traffic at all.

Can I get every comment and every reaction on a post?

No, and it says so rather than pretending. The public post page carries the exact totals and about ten comments; the list of everyone who reacted is only shown to signed-in members. You get the exact counts, the comments shown, and the native video and image URLs.

How many posts does a company page give me?

The newest posts LinkedIn shows on the public page, about ten, each with exact reaction and comment counts. For a company's full history you would need a signed-in session, which this Actor does not use.

What happens to a job that closed or a page that does not exist?

It costs nothing. You get a free error row that says which (closed, not found, or only visible to members), and the run keeps going.

Does a run fail if everything I asked for is gone?

No. "All of these have closed" is a correct answer, not a failure, so the run succeeds and returns free rows explaining each one. Only LinkedIn actually refusing us fails a run.

Can I put this on a schedule without paying twice for the same data?

Yes. Turn Monitor on. A company, post or article whose numbers have not moved is a free row marked unchanged.

Will I be charged twice if the same thing appears twice in my input?

No. A post reached through a share link and again from a company page, or a job returned by two searches, is one row and one charge.

Limits, stated plainly

LinkedIn shows its search results (people, companies, content), employee lists, reaction lists and Sales Navigator only to signed-in members, and serves member profiles to visitors only at its own discretion (measured 2026-09-02 from Apify's own exits: 35 of 50 ordinary profiles, and the refused ones stay refused). This Actor reads public pages only and never signs in, so it sells none of those — and says so here rather than on your invoice.

A public post page shows about ten comments and no repost count; the exact reaction and comment totals are always there.

Use it from n8n, MCP, the API or a schedule

Built to be called by a workflow, not only from the Store form. The Actor is vonsensey/linkedin-company-posts-scraper-api; every snippet below sends {}, which runs the defaults shown on the form — replace it with your own input.

n8n

Install the Apify community node (@apify/n8n-nodes-apify under Settings → Community Nodes, or search "Apify" on n8n Cloud). Add Apify → Run Actor with Actor vonsensey/linkedin-company-posts-scraper-api and your input JSON, then Apify → Get Dataset Items on the run's defaultDatasetId and pipe the rows anywhere. For scheduled runs, the On new Apify Event trigger fires when a run of this Actor finishes.

MCP (Claude, Cursor, VS Code, any MCP client)

{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com?tools=vonsensey/linkedin-company-posts-scraper-api",
"headers": {
"Authorization": "Bearer <YOUR_APIFY_TOKEN>"
}
}
}
}

Your agent then calls vonsensey/linkedin-company-posts-scraper-api as a tool with the same input the form takes and reads the dataset back.

REST API (one call, rows in the response)

curl -X POST "https://api.apify.com/v2/acts/vonsensey~linkedin-company-posts-scraper-api/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" -d '{}'

Python

from apify_client import ApifyClient
client = ApifyClient("<YOUR_APIFY_TOKEN>")
run = client.actor("vonsensey/linkedin-company-posts-scraper-api").call(run_input={})
for row in client.dataset(run["defaultDatasetId"]).iterate_items():
print(row)

JavaScript

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('vonsensey/linkedin-company-posts-scraper-api').call({});
const { items } = await client.dataset(run.defaultDatasetId).listItems();

Make, Zapier, LangChain, CrewAI

The Apify app in Make and Zapier has a Run an Actor module: pick vonsensey/linkedin-company-posts-scraper-api. In LangChain and CrewAI the Apify tool wrappers take the same Actor id. A daily schedule needs nothing but the Console: Schedules → Create → this Actor → cron, and the dataset fills on its own.