๐Ÿ”Ž LinkedIn Companies Suggestions Scraper avatar

๐Ÿ”Ž LinkedIn Companies Suggestions Scraper

Pricing

from $3.99 / 1,000 results

Go to Apify Store
๐Ÿ”Ž LinkedIn Companies Suggestions Scraper

๐Ÿ”Ž LinkedIn Companies Suggestions Scraper

๐Ÿ”Ž LinkedIn Companies Suggestions Scraper extracts company insights from LinkedIn suggestionsโ€”names, profiles, and key detailsโ€”fast. ๐Ÿš€ Perfect for B2B research, lead gen, sales, and recruiting. Save time, boost targeting, and scale outreach.

Pricing

from $3.99 / 1,000 results

Rating

0.0

(0)

Developer

ScrapeBase

ScrapeBase

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

10 days ago

Last modified

Share

Find the "Pages people also viewed" lookalike companies for any LinkedIn company โ€” instantly, in bulk, with follower counts and industry tags. Perfect for competitor research, ICP / lookalike audience building, outbound prospecting, and market mapping.

Give it a LinkedIn company URL โ†’ get back a clean list of similar companies, each with title, industry, profile URL, and follower count.


๐ŸŒŸ Why Choose This Actor?

โœ… FeatureWhat it means for you
๐Ÿš€ Real LinkedIn dataPulled live from LinkedIn โ€” not stale exports.
๐Ÿ“ฆ Bulk inputDrop in 1 or 100 company URLs. The actor handles the rest.
๐Ÿ‘ฅ Follower countsEvery lookalike includes its current follower count.
๐Ÿ›ก๏ธ Smart proxy handlingUses Apify Residential proxies (required for LinkedIn) and auto-rotates IPs on a block.
๐Ÿ’พ Live resultsEach lookalike is saved to the dataset the moment it is scraped.
๐Ÿงฉ Clean outputTable-friendly schema: title, subtitle, url, followers.
๐Ÿค– API / MCP readyCall from your code, n8n, Make, Zapier, or your LLM via MCP.

โœจ Key Features

  • ๐Ÿ”Ž Similar pages discovery โ€” the same "Pages people also viewed" list you see logged into LinkedIn
  • ๐Ÿข Title + industry + profile URL for every lookalike
  • ๐Ÿ‘ฅ Live follower counts via LinkedIn's own Voyager API
  • ๐Ÿ“ฆ Bulk-friendly โ€” one job, many input companies
  • ๐Ÿ›ก๏ธ Anti-block engine โ€” Chrome TLS fingerprint + smart proxy escalation
  • ๐Ÿ’พ Crash-safe โ€” partial results are always saved
  • โšก Async + concurrent โ€” fast even on large input lists
  • ๐Ÿ’ณ Pay-per-result pricing โ€” you pay for lookalikes, not failed runs

๐Ÿ“ฅ Input

FieldTypeRequiredDescription
urlsarrayโœ…LinkedIn company URLs (or /showcase/ URLs). Bulk supported.
liAtCookiestringโŒOptional. Your LinkedIn li_at session cookie for follower counts. Leave blank to use the built-in session. Secret โ€” never logged.
maxConcurrentFollowerLookupsintegerโŒParallel follower lookups per company. Default 5.
delayBetweenCompaniesnumberโŒSeconds between input companies. Default 1.5.
maxRetriesintegerโŒRetries per request. Default 3.
requestTimeoutintegerโŒRequest timeout in seconds. Default 30.
proxyConfigurationobjectโŒOptional. Defaults to no proxy. Auto-escalates on block.
  1. Open linkedin.com and sign in.
  2. Open DevTools (F12) โ†’ Application โ†’ Cookies โ†’ https://www.linkedin.com.
  3. Copy the Value of the cookie named li_at.
  4. Paste it into the liAtCookie field.

๐Ÿ“‹ Example input

{
"urls": [
{ "url": "https://www.linkedin.com/company/financial-times/" },
{ "url": "https://www.linkedin.com/company/the-economist/" }
],
"liAtCookie": "AQEDAUjBCq4FO9swAAAB...",
"maxConcurrentFollowerLookups": 5,
"delayBetweenCompanies": 1.5,
"proxyConfiguration": { "useApifyProxy": false }
}

๐Ÿ“ค Output

Each row in the output dataset is one lookalike company โ€” easy to filter, sort, and export:

{
"input_url": "https://www.linkedin.com/company/financial-times",
"title": "The Economist",
"subtitle": "Newspaper Publishing",
"url": "https://www.linkedin.com/company/the-economist/",
"followers": "13,120,759"
}

A grouped snapshot (per input company โ†’ list of lookalikes) is also saved to the key-value store as results.json:

[
{
"input_url": "https://www.linkedin.com/company/financial-times",
"lookalikes": [
{
"url": "https://www.linkedin.com/company/the-economist/",
"subtitle": "Newspaper Publishing",
"title": "The Economist",
"followers": "13,120,759"
},
{
"url": "https://www.linkedin.com/company/bloomberg/",
"subtitle": "Financial Services",
"title": "Bloomberg",
"followers": "2,207,096"
}
]
}
]

Field reference

FieldDescription
input_urlThe company you asked about.
titleLookalike company name.
subtitleLookalike industry (LinkedIn's classification).
urlLookalike company's LinkedIn URL.
followersCurrent follower count, comma-formatted (e.g. 13,120,759). Empty string if unavailable.

๐Ÿš€ How to Use (Apify Console)

  1. Log in at console.apify.com โ†’ Actors.
  2. Open LinkedIn Companies Suggestions Scraper.
  3. Paste your LinkedIn company URLs into urls.
  4. Paste your li_at cookie into liAtCookie.
  5. (Optional) Leave proxyConfiguration empty for a direct connection โ€” the actor auto-escalates if LinkedIn blocks.
  6. Click Start ๐Ÿš€
  7. Watch the live log โ€” you'll see each lookalike streamed in real time.
  8. When the run finishes, open the Output tab.
  9. Export as JSON / CSV / XLSX or pipe to your downstream tools.

๐Ÿค– Use via API / MCP

REST API (cURL)

curl -X POST "https://api.apify.com/v2/acts/<ACTOR_ID>/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"urls": [{"url": "https://www.linkedin.com/company/financial-times/"}],
"liAtCookie": "AQEDAUjBCq4FO9sw..."
}'

Python SDK

from apify_client import ApifyClient
client = ApifyClient("APIFY_TOKEN")
run = client.actor("<ACTOR_ID>").call(run_input={
"urls": [{"url": "https://www.linkedin.com/company/financial-times/"}],
"liAtCookie": "AQEDAUjBCq4FO9sw...",
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

MCP

This actor is callable from any MCP client (Claude, Cursor, etc.) via the Apify MCP gateway at https://mcp.apify.com. Each tool call is a chargeable PPE event โ€” see Pricing below.


๐Ÿ’ผ Best Use Cases

  • ๐ŸŽฏ Competitor research โ€” discover companies your competitors are bucketed with.
  • ๐Ÿงฒ Lookalike audience building โ€” feed similar companies into your outbound list.
  • ๐Ÿ—บ๏ธ Market mapping โ€” chart adjacent industries and emerging players.
  • ๐ŸŽฏ ABM enrichment โ€” expand each target account into a cluster of similar accounts.
  • ๐Ÿ“ˆ Investment scouting โ€” surface peers of a portfolio company in seconds.

๐Ÿ’ณ Pricing (Pay-Per-Event)

  • Per result item โ€” billed for each lookalike company returned (result-item event).
  • โœ… You only pay for successful results. Failed runs and zero-result inputs are free.
  • ๐Ÿ›‘ Hard-cap your spend with Max total charge in the run config โ€” the actor stops cleanly when reached.

โ“ Frequently Asked Questions

Q: Why do I need a li_at cookie? A: LinkedIn's follower counts are only available to logged-in users. The guest view exposes the lookalike list, but not the follower counts. We use your li_at only to call LinkedIn's own API for those counts.

Q: Is my cookie safe? A: The cookie field is marked as a secret โ€” Apify masks it in the run config UI and it is never written to logs.

Q: What if LinkedIn blocks the request? A: The actor uses Apify Residential proxies by default (required to reach LinkedIn from Apify's network) and automatically rotates to a fresh residential IP if a block is detected.

Q: How many lookalikes do I get per company? A: Whatever LinkedIn shows in its "Pages people also viewed" panel โ€” typically 5โ€“10 per company.

Q: Can I use this without a cookie? A: The lookalike list itself works without auth, but follower counts will be empty. We strongly recommend providing the cookie.

Q: Does it work for /showcase/ URLs? A: Yes โ€” showcase pages are supported alongside /company/ URLs.


  • Data is collected only from publicly viewable LinkedIn surfaces and your own authenticated session.
  • Honor LinkedIn's Terms of Service and your local privacy laws (GDPR, CCPA, etc.).
  • This actor is intended for research, market intelligence, and B2B use cases โ€” not for spam or harassment.
  • You are responsible for how you use the data.

๐Ÿ†˜ Support & Feedback

Found a bug? Have a feature request? Open an issue in the Actor's Issues tab on Apify, or contact the publisher directly.

Happy scraping! ๐Ÿš€