Glassdoor Salaries
1 creditGet salary data for an employer from Glassdoor.
/api/v1/tools/glassdoor/salariesParameters
Glassdoor employer URL. Either employerUrl or employerId is required.
Glassdoor employer ID (positive integer). Either employerUrl or employerId is required.
Maximum number of salary entries to return. Defaults to 20.
Fields to include per salary. Omit for defaults: jobTitle, employer, basePayStatistics, totalPayStatistics, payPeriod. Use ["*"] for all fields. Available fields: jobTitle, employer, basePayStatistics, totalPayStatistics, payPeriod, currency, totalAdditionalPayStatistics.
Response Schema
Glassdoor salaries result
Array of salary objects. Each includes pay statistics for a job title.
Aggregate salary metadata for the employer
Number of salary entries returned
ISO 8601 timestamp of the scrape
Request metadata
Tool name (glassdoor-salaries)
Credits consumed (1)
Unique request ID
Request
curl -X POST https://scraper.run/api/v1/tools/glassdoor/salaries \-H "Authorization: Bearer sc_live_..." \-H "Content-Type: application/json" \-d '{"employerUrl": "https://www.glassdoor.com/Overview/Working-at-Google-EI_IE9079.htm"}'
Response Example
{"data": {"salaries": [{"jobTitle": {"id": 9002,"text": "Software Engineer"},"employer": {"id": 9079,"name": "Google"},"basePayStatistics": {"mean": 162000,"median": 158000,"min": 120000,"max": 225000},"totalPayStatistics": {"mean": 245000,"median": 238000,"min": 170000,"max": 380000},"payPeriod": "ANNUAL"}],"salaryMeta": null,"count": 1,"scrapedAt": "2026-04-10T12:00:00.000Z"},"meta": {"tool": "glassdoor-salaries","creditsUsed": 1,"requestId": "req_abc123"}}