Linkedin Post Scraper: the Fetchin drop-in

supreme_coder/linkedin-post · Wpp1BZ6yGWjySadk3 · A profile's posts. The deepScrape input adds reactions and comments per post.

Posts are the actor people most often batch, which makes the per-item price and the rate limit matter more than anywhere else.

The marketplace listing is $2.00 per 1,000 posts. Fetchin is $1.00 per 1,000 with no platform usage on top. The narrowest gap of the four actors we emulate, and still half the price.

The input shape is unchanged, including the deepScrape flag. Point the client at our base URL and the run behaves the same way.

requests served per month
40M+requests served per month
uptime
99.9%uptime
median response time
1smedian response time
serving production traffic since
2023serving production traffic since

Fetchin vs Linkedin Post Scraper, feature by feature

Fetchin compared with Linkedin Post Scraper, feature by feature
FeatureFetchinLinkedin Post Scraper
Starting price per 1,000 requests$1.00$2.00 per 1,000 posts
Data freshnessFetched live on every requestLive, collected at run time
Response time1s median, 1.5s P955 to 30s per run, plus queue wait
DeliverySynchronous, or asynchronous via the Apify compatibility layerAsynchronous: start a run, poll, then fetch the dataset
Rate limit5 req/s self-serve, 10 to 100+ on requestConcurrency depends on plan and actor
Uptime99.9%Publisher-dependent, no SLA and no status page for this actor
EndpointsProfile, company, posts, comments, reactions, engagementA profile's posts. The deepScrape input adds reactions and comments per post.
Your own account requiredNot on the cookie-free actors
Billed on failed lookupsVaries by actor
Free trial1,000 credits, no credit cardFree tier with monthly platform credit
CommitmentNone, cancel anytimeNone, pay as you go
SupportLive chat and email, same-dayThe publisher of this actor, not Apify
Public status pageYes, at status.fetchin.io

Linkedin Post Scraper figures are taken from their own public pages and were last verified in August 2026. Pricing and limits change, so check the sources below before making a decision.

Fetchin pricing: Starter plan, $50 for 50,000 credits. Drops to $0.90 per 1,000 at 1M credits.

Linkedin Post Scraper pricing: Published by the actor's own listing at $2.00 per 1,000 posts, before Apify platform usage.

One row deserves reading twice. The success rate an actor advertises counts a run as successful once it finishes, whether or not the dataset came back complete, so it is not the same measurement as a published availability figure. You are also buying from the individual publisher rather than from Apify: there is no SLA for this actor, no status page for it, and nothing stopping it being repriced, deprecated or abandoned.

Change the base URL, keep everything else

The official Apify client works unchanged. The actor ID, the input shape and the asynchronous run semantics all stay the same. Only the base URL and the token differ.

Before

import { ApifyClient } from 'apify-client'

const client = new ApifyClient({
  token: process.env.APIFY_TOKEN,
})

const run = await client
  .actor('Wpp1BZ6yGWjySadk3')
  .call({ usernames: ['williamhgates'], deepScrape: true })

const { items } = await client
  .dataset(run.defaultDatasetId)
  .listItems()

After

import { ApifyClient } from 'apify-client'

const client = new ApifyClient({
  token: process.env.FETCHIN_API_KEY,
  baseUrl: 'https://api.fetchin.io/v1/apify',
})

const run = await client
  .actor('Wpp1BZ6yGWjySadk3')
  .call({ usernames: ['williamhgates'], deepScrape: true })

const { items } = await client
  .dataset(run.defaultDatasetId)
  .listItems()

The actor can also be referenced by its username/actor-name form, supreme_coder/linkedin-post, if that is what your integration already passes.

Questions

Does deepScrape work the same way?
Yes. The deepScrape input is accepted with the same semantics, adding reactions and comments to each post in the result.
Can I pass many profiles in one run?
Yes. This is a batch actor and accepts many usernames per run, exactly as supreme_coder/linkedin-post does on Apify. Items that cannot be resolved are reported per item rather than failing the whole run.
What does it cost against the marketplace actor?
The actor is listed at $2.00 per 1,000 posts. Fetchin bills $1.00 per 1,000 requests with no platform usage charge on top.
How reliable is this actor?
You are buying from the individual publisher, not from Apify, so there is no SLA for the actor and no status page for it. It can be repriced, deprecated or abandoned without notice, and a pipeline built on it finds out when results stop arriving. Read the advertised success rate carefully as well: it counts a run as successful once it finishes, whether or not the dataset came back complete. Fetchin publishes one uptime figure for the whole API and exposes it at status.fetchin.io.

Other emulated actors

Try it against your own data

1,000 credits, no credit card. Run the same sample through Fetchin and Apify and compare field coverage and response times yourself.