All scrapers
Jobs & careers
Glassdoor Scraper
glassdoor.com
100% Success rate
6.6s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over
Glassdoor pairs job listings with company reviews and salary data, and gates them behind bot detection. ScrapeUnblocker renders the pages as a visitor would see them and returns ratings, salary ranges and review text for each employer, holding a clean 100% across reviews, salaries and job searches.
What you can extract
- Company name, overall rating and review count
- Salary ranges by role and location
- Employee review text, pros and cons
- Job listings with title and location
- CEO approval and recommend-to-friend rates
How to scrape it
curl -X POST \
-H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
"https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.glassdoor.com%2FReviews%2Findex.htm&parsed_data=true"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/getPageSource",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"url": "https://www.glassdoor.com/Reviews/index.htm", "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.glassdoor.com/Reviews/index.htm',
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.