Jobs/Get Job Details (Advanced)
GET/api/job/detail/{job_id}

Get Job Details (Advanced)

Get comprehensive job details including salary, application method, and workplace type. Requires authentication.

1 credit
Authentication required
Parameters
NameTypeRequiredDescription
job_idstringRequiredJob posting ID or LinkedIn job URL
Response Example
{
  "job_id": "4319499798",
  "linkedin_url": "https://www.linkedin.com/jobs/view/4319499798/",
  "title": "Solutions Engineer- Startups",
  "description_text": "About The Team\n\nThe Solutions Engineering team...",
  "job_state": "LISTED",
  "employment_type": "Full-time",
  "salary": {
    "text": "$220K/yr - $280K/yr",
    "min_value": 220000,
    "max_value": 280000,
    "currency": "USD",
    "period": "yr"
  },
  "location": {
    "formatted": "San Francisco, CA",
    "city": "San Francisco",
    "state": "California",
    "country": "United States"
  },
  "company": {
    "company_id": "11130470",
    "name": "OpenAI",
    "universal_name": "openai"
  },
  "apply_method": {
    "type": "OFFSITE",
    "url": "https://jobs.ashbyhq.com/openai/...",
    "is_easy_apply": false
  }
}
Try it out

No API keys found. Create a key to use the playground.

Job posting ID or LinkedIn job URL

Code Examples
curl -X GET "https://api.heyscraper.io/api/job/detail/<job_id>" \
  -H "X-API-Key: hs_live_your_api_key"