LinkedIn Company Data Scraper API avatar

LinkedIn Company Data Scraper API

Pricing

$10.00/month + usage

Go to Apify Store
LinkedIn Company Data Scraper API

LinkedIn Company Data Scraper API

Scrape company profiles, industries, employees, and more with scalable concurrency and anti-blocking proxy support.

Pricing

$10.00/month + usage

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Share

Linkedin Company Page Scraper

Extracts structured company data from public company pages.

Features

  • JSON-LD extraction — parses structured data when available for maximum accuracy
  • HTML fallback — scrapes page elements when JSON-LD is absent
  • Configurable sections — toggle extraction of updates, locations, and similar companies
  • Proxy support — built-in Apify proxy integration to avoid blocking
  • Concurrent requests — configurable concurrency with polite delays

Input

FieldTypeDefaultDescription
companySlugsstring[]["google"]Company URL slugs to scrape
startUrlsRequestList[]Full company page URLs (alternative to slugs)
extractUpdatesbooleanfalseExtract recent posts/updates
extractLocationsbooleanfalseExtract office locations
extractSimilarCompaniesbooleantrueExtract similar companies
maxConcurrencyinteger3Max parallel requests
delayBetweenRequestsinteger2000Delay between requests (ms)
proxyConfigurationobjectApify proxy settings

Example Input

{
"companySlugs": ["google", "microsoft", "openai"],
"extractUpdates": true,
"extractLocations": true,
"maxConcurrency": 2,
"delayBetweenRequests": 3000,
"proxyConfiguration": {
"useApifyProxy": true
}
}

Output

Each company record is pushed to the default dataset with fields like:

{
"name": "Google",
"industry": "Technology, Information and Internet",
"location": "Mountain View, CA",
"followers": "38000000",
"company_size": "10,001+ employees",
"website": "https://goo.gle/3m1IN61",
"employees": "10,001+",
"description": "...",
"specialties": ["search", "ads", "cloud", "..."],
"similar_companies": ["meta", "apple", "amazon"],
"slug": "google",
"url": "https://www.linkedin.com/company/google/"
}