scraper
Back to API docs

Overview

  • Overview

APIs

  • POSTReviews
  • POSTCompany
  • POSTSalaries
  • POSTInterviews
  • POSTJobs
  • POSTJob Detail
  • POSTBenefits

Glassdoor Job Detail

2 credits

Get detailed information about a specific Glassdoor job listing.

POST/api/v1/tools/glassdoor/job-detail

Parameters

jobIdnumber

Positive Glassdoor job listing ID. Either jobId or jobUrl is required. When both are present, they must identify the same job.

jobUrlstring

Valid Glassdoor job URL. The listing ID is extracted from it. Either jobId or jobUrl is required. When both are present, they must identify the same job.

fieldsstring[]

Fields to include in the job object. Omit for defaults: jobId, url, profile, location, compensation, employer, meta. Use ["*"] for all fields.

Response Schema

dataobject

Glassdoor job detail result

jobobject

Job details. Default fields are jobId, url, profile, location, compensation, employer, and meta.

scrapedAtstring

ISO 8601 timestamp of the scrape

metaobject

Request metadata

toolstring

Tool name (glassdoor-job-detail)

creditsUsednumber

Credits consumed (2)

requestIdstring

Unique request ID

Request

curl -X POST https://scraper.run/api/v1/tools/glassdoor/job-detail \
-H "Authorization: Bearer sc_live_..." \
-H "Content-Type: application/json" \
-d '{
"jobId": 1234567890
}'

Response Example

{
"data": {
"job": {
"jobId": 1234567890,
"url": "https://www.glassdoor.com/job-listing/...-JV_IC1147401_KO0,17_KE18,24.htm?jl=1234567890",
"profile": {
"title": "Senior Software Engineer",
"description": "We are looking for a Senior Software Engineer to join our team...",
"expired": false,
"easyApply": true,
"jobType": [
"FULL_TIME"
],
"remoteWorkTypes": [
"HYBRID"
],
"skills": [
"TypeScript"
],
"education": []
},
"location": {
"name": "Mountain View, CA",
"city": "Mountain View",
"state": "CA"
},
"compensation": {
"salaryMin": 180000,
"salaryMax": 280000,
"currency": "USD"
},
"employer": {
"id": 9079,
"name": "Google",
"ratings": {
"overall": 4.4
}
},
"meta": {
"scrapedAt": "2026-04-10T12:00:00.000Z"
}
},
"scrapedAt": "2026-04-10T12:00:00.000Z"
},
"meta": {
"tool": "glassdoor-job-detail",
"creditsUsed": 2,
"requestId": "req_abc123"
}
}