Skip to main content
POST
/
api
/
stepstone
/
jobs
/stepstone/jobs
curl --request POST \
  --url https://api.anysite.io/api/stepstone/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "job": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "title": "<string>",
    "url": "<string>",
    "description": "<string>",
    "@type": "@stepstone_job",
    "global_id": "<string>",
    "description_text": "<string>",
    "employment_type": "<string>",
    "contract_type": "<string>",
    "work_type": "<string>",
    "industry": "<string>",
    "language": "<string>",
    "salary": {
      "@type": "@stepstone_job_salary",
      "salary_from": 123,
      "salary_to": 123,
      "currency": "<string>",
      "period": "<string>",
      "is_predicted": true
    },
    "employer": {
      "@type": "@stepstone_job_employer",
      "id": 123,
      "name": "<string>",
      "image": "<string>",
      "web_url": "<string>",
      "sector": "<string>",
      "sector_id": 123,
      "employee_count": "<string>",
      "job_count": 123,
      "address": "<string>",
      "website": "<string>",
      "founded": 123,
      "industries": []
    },
    "location": {
      "@type": "@stepstone_job_location",
      "locality": "<string>",
      "street": "<string>",
      "postal_code": "<string>",
      "country": "<string>",
      "lat": 123,
      "lng": 123
    },
    "is_direct_apply": true,
    "is_online": true,
    "published_at": "<string>",
    "valid_through_at": "<string>",
    "benefits": [],
    "badges": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
job
string
required

StepStone job listing id, or a job URL containing it

Minimum string length: 1
Examples:

"14128002"

"https://www.stepstone.de/stellenangebote--Senior--14128002-inline.html"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
title
string
required
url
string
required
description
string
required
@type
string
default:@stepstone_job
global_id
string | null
description_text
string | null
employment_type
string | null
contract_type
string | null
work_type
string | null
industry
string | null
language
string | null
salary
StepstoneJobSalary · object
employer
StepstoneJobEmployer · object
location
StepstoneJobLocation · object
is_direct_apply
boolean | null
is_online
boolean | null
published_at
string | null
valid_through_at
string | null
benefits
string[]
badges
string[]