LinkedIn Public Company Scraper avatar

LinkedIn Public Company Scraper

Pricing

Pay per usage

Go to Apify Store
LinkedIn Public Company Scraper

LinkedIn Public Company Scraper

Scrape public LinkedIn company pages. Extract name, tagline, description, employee count, follower count, industry, headquarters, founded year, website, specialties. No login required.

Pricing

Pay per usage

Rating

0.0

(0)

Developer

Web Data Labs

Web Data Labs

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

19 hours ago

Last modified

Categories

Share

LinkedIn Public Company Scraper — No Login Required

Scrape public LinkedIn company pages and get clean, structured JSON. No LinkedIn login, no API keys, no credentials. Perfect for B2B sales intelligence, investor research, hiring signals, and market mapping.

What It Does

This actor fetches publicly available data from LinkedIn company pages. It works by reading meta tags, Open Graph data, and JSON-LD structured data — no LinkedIn login or cookies required.

Supports batch scraping of multiple companies in a single run.

Input

FieldTypeRequiredDefaultDescription
companiesarrayYesCompany slugs (e.g. microsoft) or full URLs (e.g. https://linkedin.com/company/microsoft).
max_resultsintegerNo50Maximum number of companies to scrape (max 50).

Output

{
"company_id": "microsoft",
"name": "Microsoft",
"tagline": "Every company has a mission...",
"description": "Microsoft is a technology company...",
"industry": "Software Development",
"employee_count": "10001+",
"follower_count": "23000000",
"headquarters": "Redmond, Washington, US",
"founded_year": 1975,
"website": "https://www.microsoft.com",
"specialties": ["Cloud", "Productivity", "AI"],
"logo_url": "https://media.licdn.com/...",
"company_url": "https://www.linkedin.com/company/microsoft",
"scraped_at": "2026-05-01T12:00:00+00:00"
}

Pricing — Pay-Per-Event (PPE)

Starting May 17, 2026, this actor uses Pay-Per-Event pricing: $0.008 per company scraped. The first 5 events are free for testing. No surprise compute bills — pay only for results you actually receive.

Use Cases

  • B2B sales intelligence — Build qualified lead lists with company size, industry, location
  • Investor research — Track portfolio companies, founding year, headcount growth
  • Hiring signals — Spot fast-growing companies with rising follower counts
  • Market mapping — Build a complete view of competitors and adjacent players

How to Run via API

import requests
run = requests.post(
"https://api.apify.com/v2/acts/cryptosignals~linkedin-company-scraper/runs",
params={"token": "YOUR_API_TOKEN"},
json={
"companies": ["microsoft", "stripe", "shopify"],
"max_results": 10,
},
).json()
dataset_id = run["data"]["defaultDatasetId"]
results = requests.get(
f"https://api.apify.com/v2/datasets/{dataset_id}/items"
).json()
for c in results:
print(f"{c['name']}{c.get('industry')}{c.get('headquarters')}")

Proxy Recommendation

LinkedIn restricts datacenter IPs. For reliable scraping at scale, use residential proxies. We recommend ThorData.

Disclaimer

This actor scrapes only publicly accessible LinkedIn data. Users are responsible for complying with LinkedIn's Terms of Service and applicable data protection laws (GDPR, CCPA) in their jurisdiction.

⭐ Leave a Review

If this actor saved you time, a quick review on the Apify Store helps other developers find it.