Jobs
Glassdoor Salaries Scraper
Scrape Glassdoor salary benchmarks by job title, optionally scoped to a specific company. Get base-pay and total-pay percentiles, currency, pay period, and a pay-mix breakdown per row — ready for CSV, JSON, or API export, no login required.
Free Apify credit covers a first run. No credit card to try.
What this Actor scrapes
Glassdoor publishes crowdsourced base-pay and total-pay percentiles for thousands of job titles, with an optional per-company breakdown — but the site has no export button and no public API. This Actor searches Glassdoor's own salary pages and writes one structured row per job-title (optionally per-company) benchmark: base pay, total pay (25th/median/75th percentile), currency, pay period, and a pay-mix breakdown (commission, profit-sharing, tips) when Glassdoor exposes one. No Glassdoor login is required — the percentile data is visible on the public page.
What we handle for you
- 🛡️ We rotate browser fingerprints — curl-cffi impersonates real Chrome / Firefox / Safari TLS handshakes so Glassdoor sees a browser, not Python.
- 🌐 We rotate proxy exit IPs and session IDs through Apify Proxy on every block.
- 🔁 We retry with exponential backoff on 408 / 429 / 5xx and rotate fingerprints on a Cloudflare challenge — up to 5 attempts per page, Retry-After honoured.
- 🧱 We back off when Glassdoor rate-limits — partial results surface with a clear status message; we never silently return an empty dataset.
- 🧊 Clean, typed dataset rows — Pydantic-validated, ISO-8601 timestamps, ready for JSON / CSV / Excel export straight from the Apify Console.
- 💰 You pay only for results that land. No data → no charge, only the small actor-start warm-up fee.
Use cases
- Compensation benchmarking — pull current base/total-pay percentiles for a role family into your comp-planning sheet.
- Offer calibration — check a candidate's ask against Glassdoor's crowdsourced range for that title (and company, if you scope it).
- Comp-team market scans — sweep dozens of job titles at once, on a schedule, to track how published ranges shift.
- Company-specific pay research — resolve a target employer once (or supply its employerId directly) and pull every title you care about at that company.
Input
Paste this into the Apify Console, or send it as the run input over the API. Proxy settings are on by default; you rarely need to touch them.
| Field | Type | Required | What it does |
|---|---|---|---|
searchMode | string | no | 'title' scrapes national/aggregate salary benchmarks per job title via the title-search results page. 'title_at_company' resolves each (job title, company) pair to a company+title detail page. |
jobTitles | array | yes | One or more job titles to search, e.g. 'Software Engineer'. Required — this is the primary search key. |
companyNames | array | no | Company names to scope results to. Required when Search mode is 'title_at_company'. Resolved to Glassdoor's internal employerId via the title-search results listing unless Employer IDs is also set. |
employerIds | array | no | Power-user shortcut: known Glassdoor employerId values, paired positionally with Company names (one employerId per company, reused across every requested title). Skips the search-results resolution hop entirely when set. |
locations | array | no | Optional location filter, applied best-effort against whatever location signal the page exposes. Does not block a title-only run. |
maxResults | integer | no | Hard cap on dataset rows for this run. |
{
"searchMode": "title",
"jobTitles": [
"Software Engineer"
],
"companyNames": null,
"employerIds": null,
"locations": null,
"maxResults": 3,
"proxyConfiguration": {
"useApifyProxy": true,
"apifyProxyGroups": [
"RESIDENTIAL"
]
}
} Output
One row per result, schema-validated before it is written. Export JSON, CSV, Excel or XML from the run, or read it over the API.
job_titlecompany_nameemployer_idlocationbase_pay_25thbase_pay_medianbase_pay_75thtotal_pay_25thtotal_pay_mediantotal_pay_75thcurrency_codepay_periodadditional_pay_breakdownsample_sizesource_urlscraped_at
{
"job_title": "Software Engineer",
"company_name": "Google",
"employer_id": 9079,
"location": null,
"base_pay_25th": null,
"base_pay_median": 150000.0,
"base_pay_75th": null,
"total_pay_25th": 240111.12,
"total_pay_median": 296307.52,
"total_pay_75th": 374773.68,
"currency_code": "USD",
"pay_period": "ANNUAL",
"additional_pay_breakdown": [
{
"component": "COMMISSION",
"median": 0.0
},
{
"component": "PROFITSHARING",
"median": 45000.0
},
{
"component": "TIPS",
"median": 0.0
}
],
"sample_size": null,
"source_url": "https://www.glassdoor.com/Salary/Google-Software-Engineer-Salaries-E9079_D_KO7,24.htm",
"scraped_at": "2026-08-02T09:00:00+00:00"
} Pricing
| Event | Price | When |
|---|---|---|
| Actor start | $0.20 | Once per run, covers warm-up and proxy session setup. |
| Result row | $0.0020 | Per result written to the dataset. |
You pay only for results that land. Cap any run with maxTotalChargeUsd. See pricing & billing for worked examples.
FAQ
Do I need a Glassdoor account or API key?
What's the difference between 'title' and 'title_at_company' mode?
Why are base_pay_25th and base_pay_75th sometimes null?
Why did my run come back with fewer rows than Max results?
Ready to run it?
Open the listing on Apify, paste the input above, and watch rows land. If it ever breaks, it is our problem before it is yours.
Related Actors