Skip to main content
POST
/
api
/
simplyhired
/
jobs
/simplyhired/jobs
curl --request POST \
  --url https://api.anysite.io/api/simplyhired/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "job": "<string>",
  "timeout": 300,
  "country": "US"
}
'
[
  {
    "id": "<string>",
    "@type": "@simplyhired_job",
    "title": "<string>",
    "normalized_title": "<string>",
    "display_title": "<string>",
    "location": "<string>",
    "city": "<string>",
    "state": "<string>",
    "latitude": 123,
    "longitude": 123,
    "job_types": [],
    "work_settings": [],
    "description": "<string>",
    "description_text": "<string>",
    "employer": {
      "@type": "@simplyhired_employer",
      "name": "<string>",
      "image": "<string>",
      "rating": 123,
      "company_page_url": "<string>"
    },
    "salary": {
      "@type": "@simplyhired_salary",
      "display": "<string>",
      "salary_from": 123,
      "salary_to": 123,
      "period": "<string>",
      "currency": "<string>"
    },
    "benefits": [],
    "qualifications": [],
    "published_at": 123,
    "expiration_at": 123,
    "is_expired": true,
    "apply_url": "<string>",
    "is_indeed_apply": true,
    "is_sponsored": true,
    "similar_jobs": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
job
string
required

SimplyHired job key, or a job URL containing it

Minimum string length: 1
Example:

"iFcNaKeE120s1UMCNfvZVOsFA05QIBB2r2HOgU2523BjavM4kvFzig"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
country
enum<string>
default:US

SimplyHired country edition the job is listed on

Available options:
US,
GB,
CA,
IE,
IN,
DE,
FR,
ES,
IT,
NL,
AT,
BE,
CH,
PT,
SE,
BR,
AR,
MX,
AU

Response

Successful Response

id
string
required
@type
string
default:@simplyhired_job
title
string | null
normalized_title
string | null
display_title
string | null
location
string | null
city
string | null
state
string | null
latitude
number | null
longitude
number | null
job_types
string[]
work_settings
string[]
description
string | null
description_text
string | null
employer
SimplyhiredEmployer · object
salary
SimplyhiredSalary · object
benefits
string[]
qualifications
string[]
published_at
integer | null
expiration_at
integer | null
is_expired
boolean | null
apply_url
string | null
is_indeed_apply
boolean | null
is_sponsored
boolean | null
similar_jobs
SimplyhiredSimilarJob · object[]