Glassdoor Scraper - Jobs, Companies & Salaries
Under maintenancePricing
Pay per event
Glassdoor Scraper - Jobs, Companies & Salaries
Under maintenanceScrape Glassdoor job listings: title, company, location, salary parsed, employment type, description. 25+ structured fields per job via JSON-LD. HTTP-only, low cost.
Pricing
Pay per event
Rating
0.0
(0)
Developer
deusex machine
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share
Glassdoor Scraper API — Jobs, Companies, Salaries & Reviews Data
A high-performance Glassdoor scraper that extracts complete job listings from Glassdoor.com, one of the most trusted job & employer review platforms with 80M+ reviews and millions of active job postings across the US, UK, Canada, India, Australia, Germany and France. Pull 25+ structured fields per job — title, company name, location parsed to city/state/country, salary range with currency and unit, full description, employment type, posting date, and education/experience requirements — without writing a single line of HTML scraping logic.
Built for recruiters tracking US, UK and EMEA labor supply, market analysts comparing pay across LinkedIn Jobs, Indeed, and BLS data, salary benchmarking firms, founders monitoring competitor hiring patterns, and ML teams training resume-to-job matching pipelines against the schema.org JobPosting schema. Output is clean JSON, ready for Google BigQuery, Snowflake, Postgres, or Google Sheets.
✨ Why use this scraper
This actor automates browsing glassdoor.com the way a real visitor does. It hits the public job search pages, walks through pagination, parses the embedded schema.org JobPosting JSON-LD blocks served alongside each search result, and visits every individual job detail page to extract the full structured posting — title, company, salary, location, employment type, description, education and experience requirements.
The pricing logic is automatic: Glassdoor's JSON-LD baseSalary block becomes salaryMin: 143913, salaryMax: 197200, salaryCurrency: "USD", salaryUnit: "YEAR", plus a human-readable salaryText: "$143,913 - $197,200 USD/year". Locations are split into city, state/region, country, postal code and street address, so downstream filtering by city or state works out of the box.
The scraper is HTTP-only — no headless browser, no captcha solver. Memory footprint is 512 MB, dramatically lower than the 4 GB needed by browser-based competitors. It runs on Apify's residential proxy network out of the box.
📤 Output fields
Every record contains these fields when present in Glassdoor's structured data:
Identity & links
title— Position titlejobUrl— Direct link to the Glassdoor listingposition— Position in the search results ranking
Company
companyName— Hiring companycompanyUrl— Company's external URL (sameAs from JSON-LD)companyLogoUrl— Logo image URLindustry— Industry classification
Location
location— Concatenated "City, State, Country" stringaddressLocality— CityaddressRegion— State or regionaddressCountry— Country namepostalCode— Postal/ZIP codestreetAddress— Street address when publishedjobLocationType—"TELECOMMUTE"when remoteapplicantLocationRequirements— Geographic eligibility
Salary
salaryText— Human-readable formatted stringsalaryMin— Lower bound numbersalaryMax— Upper bound numbersalaryValue— Single value when no range is givensalaryCurrency—"USD","EUR","GBP", etc.salaryUnit—"YEAR","HOUR","MONTH","WEEK"
Description & requirements
jobDescription— Full description textjobDescriptionHtml— Original HTML markup of the descriptionqualifications— Required qualifications when separately publishedresponsibilities— Day-to-day responsibilitiesskills— Skills list from JSON-LD when providededucationRequirements— Education level requiredexperienceRequirements— Experience required
Timestamps & employment type
datePosted— ISO 8601 posting datepostedDate— Alias of datePostedvalidThrough— Listing expiration dateemploymentType— Array of types ("FULL_TIME","PART_TIME","CONTRACTOR","INTERN")directApply— Boolean: can apply directly on Glassdoor?
🎯 Use cases
- Recruitment talent radar — Track jobs matching your hiring niche, filter by
addressRegionfor US states, byemploymentTypefor full-time only, bysalaryMinfor compensation bands. - Salary benchmarking — Aggregate
salaryMin/salaryMaxby job title + location to produce reliable pay bands. ThesalaryUnitfield lets you cleanly separate hourly vs annual data. - Hiring intelligence — Track which companies are scaling specific functions. Combine
companyName+industryfor clean B2B segmentation. - ML training corpora — Pair
title, fulljobDescription,educationRequirements, andexperienceRequirementsto train resume-to-job matching models. - Lead generation — Identify companies actively hiring in your niche (e.g. all US companies hiring a "VP of Engineering"). Use
companyName+addressLocalityfor geographic prospecting. - Compensation transparency reports — Detect employers consistently posting salary ranges vs those who don't, useful for pay equity research.
🚀 How to use
Mode 1 — Search by keywords (easiest)
{"mode": "keywords","keywords": ["python developer", "data engineer"],"country": "us","maxJobs": 100,"fetchDetails": true}
Mode 2 — Multi-country pipeline
{"mode": "keywords","keywords": ["software engineer"],"country": "uk","maxJobs": 200,"fetchDetails": true}
Mode 3 — Pre-built search URLs (advanced)
{"mode": "urls","searchUrls": [{ "url": "https://www.glassdoor.com/Job/remote-python-developer-jobs-SRCH_IL.0,6_IS11047_KO7,23.htm" }],"maxJobs": 50,"fetchDetails": true}
📥 Input
| Parameter | Type | Default | Description |
|---|---|---|---|
mode | enum | "keywords" | "keywords" or "urls" |
keywords | array | ["python developer"] | Job titles / keywords |
country | enum | "us" | Regional Glassdoor domain |
searchUrls | array | [] | Pre-built URLs (urls mode) |
maxJobs | integer | 50 | Cap per keyword/URL |
fetchDetails | boolean | true | Visit detail pages for full structured data |
proxyConfiguration | object | RESIDENTIAL | Apify proxy (residential recommended) |
📋 Output example
{"position": 1,"title": "Python Developer","jobUrl": "https://www.glassdoor.com/job-listing/python-developer-social-security-administration-...","companyName": "US Social Security Administration","companyLogoUrl": "https://media.glassdoor.com/sql/...png","companyUrl": "https://www.ssa.gov","industry": "Government","location": "Woodlawn, Maryland, United States","addressLocality": "Woodlawn","addressRegion": "Maryland","addressCountry": "United States","salaryText": "$143,913 - $197,200 USD/year","salaryMin": 143913,"salaryMax": 197200,"salaryCurrency": "USD","salaryUnit": "YEAR","employmentType": ["FULL_TIME"],"datePosted": "2026-05-06T00:00:00","validThrough": "2026-06-06T00:00:00","jobDescription": "Summary IT Specialist (APPSW), Python Developer position(s) are being filled through the Office of Personnel Management...","educationRequirements": "Bachelor's degree","experienceRequirements": "5 years"}
💻 Code examples
From the Apify API (curl)
curl -X POST "https://api.apify.com/v2/acts/makework36~glassdoor-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \-H "Content-Type: application/json" \-d '{"mode": "keywords","keywords": ["data engineer"],"country": "us","maxJobs": 100,"fetchDetails": true}'
From Python (apify-client)
from apify_client import ApifyClientclient = ApifyClient("YOUR_APIFY_TOKEN")run = client.actor("makework36/glassdoor-scraper").call(run_input={"mode": "keywords","keywords": ["python developer", "data scientist"],"country": "us","maxJobs": 200,"fetchDetails": True,})for job in client.dataset(run["defaultDatasetId"]).iterate_items():print(job["title"], job["companyName"], job.get("salaryText"))
From Node.js (apify-client)
import { ApifyClient } from 'apify-client';const client = new ApifyClient({ token: 'YOUR_APIFY_TOKEN' });const run = await client.actor('makework36/glassdoor-scraper').call({mode: 'keywords',keywords: ['software engineer'],country: 'us',maxJobs: 100,fetchDetails: true,});const { items } = await client.dataset(run.defaultDatasetId).listItems();console.log(`Got ${items.length} jobs`);
Export to CSV
curl "https://api.apify.com/v2/acts/makework36~glassdoor-scraper/runs/last/dataset/items?format=csv&token=$APIFY_TOKEN" \-o glassdoor_jobs.csv
⚡ Performance
| Mode | Time per job | 100 jobs ETA |
|---|---|---|
| Search only (titles + URLs) | ~0.5 s | ~50 s |
With fetchDetails: true | ~7–15 s | ~12–25 min |
Detailed mode visits each individual job page to extract the full JSON-LD JobPosting. This is necessary for salary, full description, employment type and address. Search-only mode is much faster but returns only title + URL.
📊 Comparison
| Feature | This actor | Browser-only with proxy | Headless + captcha solver |
|---|---|---|---|
| Output fields | 25+ structured | 15–20 | 18 |
| Salary parsed to Min/Max/Currency/Unit | ✅ | partial | partial |
| Location split (city/state/country) | ✅ | ❌ | ❌ |
| Pure HTTP (no browser) | ✅ | ❌ | ❌ |
| Memory footprint | 512 MB | 4 GB | 4 GB |
| Captcha solver required | ❌ | ❌ | ✅ |
| Pricing model | PAY_PER_EVENT tiered | flat | flat |
💵 Pricing
This actor uses PAY_PER_EVENT pricing with tiered volume discounts.
| Tier | Standard job (URL+title only) | Detailed job (full JSON-LD) |
|---|---|---|
| FREE | $1.50 / 1K | $7.50 / 1K |
| BRONZE | $1.10 / 1K | $5.50 / 1K |
| SILVER | $0.80 / 1K | $4.00 / 1K |
| GOLD | $0.55 / 1K | $2.80 / 1K |
| PLATINUM | $0.40 / 1K | $2.20 / 1K |
| DIAMOND | $0.28 / 1K | $1.80 / 1K |
Plus a one-time $0.001 per actor run. Detailed mode is the default because Glassdoor's value lives in the structured JobPosting data on each individual page.
❓ FAQ
Why does the scraper need Residential proxies? Glassdoor blocks datacenter IPs aggressively. Residential proxies route traffic through real households, which Glassdoor accepts. Apify includes residential proxy access in most paid plans.
Is scraping Glassdoor legal? This actor accesses publicly available job pages — no login, no paywall bypass, no PII extraction beyond what employers post publicly. Always check Glassdoor's terms of service and consult legal counsel for your jurisdiction.
Can I scrape Glassdoor company reviews / salaries? No — this actor focuses on job listings. Glassdoor's reviews and aggregated salary reports require a different stack and have different terms-of-service implications.
Does this support Glassdoor UK / Canada / Germany / France?
Yes. Set country to uk, ca, de, fr, in, or au and the scraper hits the matching regional Glassdoor domain.
How fresh is the data? The scraper fetches in real time at run start. Glassdoor updates listings continuously.
Can I scrape Glassdoor without writing code? Yes — use the input form on this page, click Start, then download the dataset as CSV or Excel.
Why are qualifications and responsibilities fields sometimes empty?
Not all Glassdoor postings split these out as separate JSON-LD properties. When absent, the same information typically lives inside jobDescription as a paragraph.
Does the scraper deduplicate jobs?
Yes. Each jobUrl is tracked across pages within a run; duplicates are skipped.
Is there a rate limit on my side? The actor uses jitter between pages and rotates proxy sessions automatically. For very large runs (>5,000 jobs), split across multiple Apify Tasks scheduled minutes apart.
📝 Changelog
- 0.1 (2026-05) — Initial release. Keywords + URLs modes. JSON-LD parsing for search and detail. 25+ fields. Residential proxy default.
🔗 Related actors
makework36/indeed-scraper— Indeed.com US jobsmakework36/naukri-scraper— Naukri.com India jobsmakework36/trustpilot-reviews-scraper— Trustpilot reviewsmakework36/google-maps-scraper-full— Google Maps places
