All scrapers LinkedIn
Business data
linkedin.com
100% Success rate
5.6s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over
LinkedIn is the standard source for company headcount trends and hiring signals. Public company pages and job posts are reachable; anything behind a login is not, by design.
What you can extract
- Company name, industry and headcount band
- Company about text and headquarters
- Public job postings with title and location
- Posting date and applicant signals
- Public follower count
How to scrape it
curl -X POST \
-H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
"https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.linkedin.com%2F&parsed_data=true"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/getPageSource",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"url": "https://www.linkedin.com/", "parsed_data": True},
)
print(resp.text)import { ScrapeUnblockerClient } from 'scrapeunblocker';
const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });
const results = await su.getPageSource({
url: 'https://www.linkedin.com/',
parsedData: true,
});
console.log(results); Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.
Related scrapers
Start scraping this site today
Free tier included. No credit card required to test it.