Skip to main content
POST
/
api
/
glassdoor
/
jobs
/glassdoor/jobs
curl --request POST \
  --url https://api.anysite.io/api/glassdoor/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "job": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@glassdoor_job",
    "title": "<string>",
    "url": "<string>",
    "description": "<string>",
    "location": "<string>",
    "location_type": "<string>",
    "latitude": 123,
    "longitude": 123,
    "age_in_days": 123,
    "is_easy_apply": true,
    "is_expired": true,
    "apply_url": "<string>",
    "pay": {
      "@type": "@glassdoor_job_pay",
      "currency": "<string>",
      "period": "<string>",
      "source": "<string>",
      "min": 123,
      "median": 123,
      "max": 123
    },
    "employer": {
      "@type": "@glassdoor_job_employer",
      "id": "<string>",
      "name": "<string>",
      "image": "<string>",
      "rating": 123,
      "url": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
job
string
required

Glassdoor job listing id or a job URL containing it

Minimum string length: 1
Examples:

"1010126621706"

"https://www.glassdoor.com/job-listing/j?jl=1010126621706"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@glassdoor_job
title
string | null
url
string | null
description
string | null
location
string | null
location_type
string | null
latitude
number | null
longitude
number | null
age_in_days
integer | null
is_easy_apply
boolean | null
is_expired
boolean | null
apply_url
string | null
pay
GlassdoorJobPay · object
employer
GlassdoorJobEmployer · object