Skip to main content
POST
/
api
/
dice
/
jobs
/dice/jobs
curl --request POST \
  --url https://api.anysite.io/api/dice/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "job": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@dice_job",
    "title": "<string>",
    "description": "<string>",
    "url": "<string>",
    "company_name": "<string>",
    "company_url": "<string>",
    "company_logo": "<string>",
    "employment_type": "<string>",
    "location": {
      "@type": "@dice_job_location",
      "city": "<string>",
      "region": "<string>",
      "postal_code": "<string>",
      "country": "<string>"
    },
    "applicant_location": "<string>",
    "salary": {
      "@type": "@dice_job_salary",
      "text": "<string>",
      "currency": "<string>",
      "min_value": 123,
      "max_value": 123
    },
    "skills": [],
    "posted_at": "<string>",
    "valid_through": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
job
string
required

Job GUID or a full Dice job-detail URL

Minimum string length: 1
Examples:

"262dfc82-b017-40d1-ad06-1ac162a0c3bf"

"https://www.dice.com/job-detail/262dfc82-b017-40d1-ad06-1ac162a0c3bf"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@dice_job
title
string | null
description
string | null
url
string | null
company_name
string | null
company_url
string | null
company_logo
string | null
employment_type
string | null
location
DiceJobLocation · object
applicant_location
string | null
salary
DiceJobSalary · object
skills
string[]
posted_at
string | null
valid_through
string | null