Endpoint Playground
Test Crawlora's Workday Single Job API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/jobs/workday/job?tenant=nvidia&datacenter=wd5&site=NVIDIAExternalCareerSite&path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| tenant | string | Yes | nvidia | Workday tenant |
| datacenter | string | Yes | wd5 | Workday datacenter shard |
| site | string | Yes | NVIDIAExternalCareerSite | Workday career site |
| path | string | Yes | Job externalPath from a board listing |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "workday",
"id": "/job/US-CA-Santa-Clara/Engineer_JR2020246",
"title": "Senior Engineer",
"company": "2100 NVIDIA USA",
"location": "US, CA, Santa Clara",
"employment_type": "Full time",
"req_id": "JR2020246",
"posted_at": "2026-07-10",
"posted_age_text": "Posted Today",
"url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/...",
"description_text": "NVIDIA is ..."
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Returns a single Workday posting's full detail (description, location, req id). path is the externalPath from a board listing. tenant/datacenter/site as in the board endpoint. Credential-free public ATS JSON.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "workday",
"id": "/job/US-CA-Santa-Clara/Engineer_JR2020246",
"title": "Senior Engineer",
"company": "2100 NVIDIA USA",
"location": "US, CA, Santa Clara",
"employment_type": "Full time",
"req_id": "JR2020246",
"posted_at": "2026-07-10",
"posted_age_text": "Posted Today",
"url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/...",
"description_text": "NVIDIA is ..."
}
}curl "https://api.crawlora.net/api/v1/jobs/workday/job?tenant=<tenant>&datacenter=<datacenter>&site=<site>&path=<path>" \
-H "x-api-key: $CRAWLORA_API_KEY"