Skip to main content
POST
/
api
/
workday
/
jobs
/workday/jobs
curl --request POST \
  --url https://api.anysite.io/api/workday/jobs \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "url": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@workday_job",
    "title": "<string>",
    "req_id": "<string>",
    "posting_id": "<string>",
    "description": "<string>",
    "location": "<string>",
    "additional_locations": [],
    "requisition_location": {
      "@type": "@workday_requisition_location",
      "name": "<string>",
      "country": {
        "@type": "@workday_country",
        "id": "<string>",
        "name": "<string>",
        "alpha2_code": "<string>"
      }
    },
    "country": {
      "@type": "@workday_country",
      "id": "<string>",
      "name": "<string>",
      "alpha2_code": "<string>"
    },
    "remote_type": "<string>",
    "time_type": "<string>",
    "posted_on": "<string>",
    "start_date": "<string>",
    "end_date": "<string>",
    "is_posted": true,
    "can_apply": true,
    "site": "<string>",
    "hiring_organization": {
      "@type": "@workday_hiring_organization",
      "name": "<string>",
      "url": "<string>"
    },
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
url
string
required

Full job posting URL from a Workday career board, e.g. https://{tenant}.{dc}.myworkdayjobs.com/{site}/job/{location}/{slug}_{reqId}

Minimum string length: 1
Example:

"https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Senior-Platform-and-EngOps-Engineer---Cluster-Operations_JR2014633"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@workday_job
title
string | null
req_id
string | null
posting_id
string | null
description
string | null
location
string | null
additional_locations
string[]
requisition_location
WorkdayRequisitionLocation · object
country
WorkdayCountry · object
remote_type
string | null
time_type
string | null
posted_on
string | null
start_date
string | null
end_date
string | null
is_posted
boolean | null
can_apply
boolean | null
site
string | null
hiring_organization
WorkdayHiringOrganization · object
url
string | null