Profile Comments Scraper for LinkedIn: the Fetchin drop-in

apimaestro/linkedin-profile-comments · 7TNcROe1C2CQDO3wl · Comments made by a profile, paginated.

This actor pages by page number rather than by token, and the emulation matches that behaviour, including the absence of a root pagination token on items, which mirrors apimaestro/linkedin-profile-comments exactly.

Both the plural and singular username inputs are accepted, so integrations written against either form keep working.

Field mapping is validated against real marketplace output and reaches zero field errors on matched items.

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 Profile Comments Scraper for LinkedIn, feature by feature

Fetchin compared with Profile Comments Scraper for LinkedIn, feature by feature
FeatureFetchinProfile Comments Scraper for LinkedIn
Starting price per 1,000 requests$1.00$2 to $5
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, engagementComments made by a profile, paginated.
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

Profile Comments Scraper for LinkedIn 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.

Profile Comments Scraper for LinkedIn pricing: Set per actor by its publisher, so the rate depends on which actor you pick. Listed rates run $2.00 per 1,000 posts on supreme_coder/linkedin-post, $4.00 per 1,000 profiles on harvestapi/linkedin-profile-scraper, $5.00 on supreme_coder/linkedin-profile-scraper, and $10.00 per 1,000 with email lookup, all on top of 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('7TNcROe1C2CQDO3wl')
  .call({ usernames: ['williamhgates'], limit: 100 })

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('7TNcROe1C2CQDO3wl')
  .call({ usernames: ['williamhgates'], limit: 100 })

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

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

Questions

How does paging work?
By page number, matching the actor. Items do not carry a root pagination token, which is the same behaviour as apimaestro/linkedin-profile-comments. Integrations that page by incrementing the page number keep working unchanged.
Does it accept both username inputs?
Yes. Both the plural usernames array and the singular username string are accepted, so either integration style works.
Is the field mapping validated?
Yes. The comments emulation is validated field-by-field against real output from the actor and reaches zero field errors on matched items.
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.