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

Glassdoor job listing ID. Either jobId or jobUrl is required.

jobUrlstring

Glassdoor job URL (listing ID is extracted from it). Either jobId or jobUrl is required.

fieldsstring[]

Fields to include. Omit for defaults: profile, location, compensation, employer. Use ["*"] for all. Available fields: profile, location, compensation, employer, meta.

Response Schema

dataobject

Glassdoor job detail result

titlestring

Job title

companystring

Company name

locationstring

Job location

salaryRangeobject | null

Salary range with min, max, and currency

descriptionstring

Full job description

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": {
"title": "Senior Software Engineer",
"company": "Google",
"location": "Mountain View, CA",
"salaryRange": {
"min": 180000,
"max": 280000,
"currency": "USD"
},
"description": "We are looking for a Senior Software Engineer to join our team...",
"scrapedAt": "2026-04-10T12:00:00.000Z"
},
"meta": {
"tool": "glassdoor-job-detail",
"creditsUsed": 2,
"requestId": "req_abc123"
}
}