Discover/Workday Jobs API
live

Workday Jobs APIhealthcare.wd1.myworkdayjobs.com

Search and retrieve full job postings from any Workday career site (*.myworkdayjobs.com). Get titles, descriptions, locations, and filters across all companies.

Endpoints
2
Updated
1mo ago
Try it
Full Workday job posting URL (e.g., https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCar
Set to 'true' to include raw HTML job description in addition to plain text. Accepted valu
api.parse.bot/scraper/75f11f0d-6134-48ef-bbf8-0fd628bcc2c4/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/75f11f0d-6134-48ef-bbf8-0fd628bcc2c4/get_job?job_url=https%3A%2F%2Fnvidia.wd5.myworkdayjobs.com%2FNVIDIAExternalCareerSite%2Fjob%2FUS-CA-Santa-Clara%2FSoftware-Engineer_JR1234567' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Get full job posting details including title, description, location, requirements, and similar jobs from any Workday job posting URL.

Input
ParamTypeDescription
job_urlrequiredstringFull Workday job posting URL (e.g., https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/US-CA-Santa-Clara/Software-Engineer_JR1234567)
include_htmlstringSet to 'true' to include raw HTML job description in addition to plain text. Accepted values: 'true', 'false'.
Response
{
  "type": "object",
  "fields": {
    "id": "string - Internal Workday job ID",
    "title": "string - Job title",
    "country": "string or null - Country name",
    "location": "string - Job location",
    "can_apply": "boolean - Whether applications are open",
    "posted_on": "string - When posted (e.g., 'Posted 30+ Days Ago')",
    "time_type": "string - Full time/Part time",
    "job_req_id": "string - Job requisition ID",
    "start_date": "string - Start date in ISO format",
    "remote_type": "string or null - Hybrid/Remote/On-site",
    "external_url": "string - Public URL of the job posting",
    "similar_jobs": "array of similar job postings with title, location, time_type, posted_on, remote_type, path",
    "hiring_organization": "string - Hiring company name",
    "job_description_text": "string - Plain text job description"
  },
  "sample": {
    "data": {
      "id": "f995b7e483e41000b618a960c9a70000",
      "title": "Senior Software Developer",
      "country": "India",
      "location": "IN, BANGALORE",
      "can_apply": true,
      "posted_on": "Posted 30+ Days Ago",
      "time_type": "Full time",
      "job_req_id": "R01123555",
      "start_date": "2026-01-05",
      "remote_type": "Hybrid",
      "external_url": "https://healthcare.wd1.myworkdayjobs.com/Search/job/IN-BANGALORE/Senior-Software-Developer_R01123555",
      "similar_jobs": [
        {
          "path": "/job/IN-BANGALORE/Senior-Software-Developer_R01125903",
          "title": "Senior Software Developer",
          "location": "IN, BANGALORE",
          "posted_on": "Posted 30+ Days Ago",
          "time_type": "Full time",
          "remote_type": "Hybrid"
        }
      ],
      "hiring_organization": "IND Trimodal Softech Solutions Private Limited",
      "job_description_text": "Thank you for your interest in joining Solventum..."
    },
    "status": "success"
  }
}

About the Workday Jobs API

The Workday Jobs API exposes 2 endpoints that cover job search and full posting details across every company that hosts its careers page on *.myworkdayjobs.com. The get_job endpoint returns 10 structured fields per posting — including job requisition ID, remote type, and whether applications are open — while search_jobs lets you query any Workday career site by keyword, category, location, and remote-work type with paginated results and facet counts.

What the API Covers

The API works against any subdomain under myworkdayjobs.com, which means a single integration gives you access to job postings from thousands of employers — healthcare systems, tech companies, financial institutions, and more — without needing a separate connector per company. Coverage spans all public job postings on Workday-hosted career portals.

get_job Endpoint

Pass any Workday job posting URL via the job_url parameter and receive a structured object with title, location, country, time_type (full/part), remote_type (e.g. Hybrid, On-site), posted_on, start_date, job_req_id, can_apply, and the internal Workday id. Set include_html to true if you need the raw HTML of the job description in addition to plain text — useful when you need to preserve formatting for downstream rendering.

search_jobs Endpoint

Point the site_url parameter at any company's Workday search page (e.g., https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite) and supply a query string to search across job titles and descriptions. Results include each job's title, location, posted_on, remote_type, job_req_id, and path. Pagination is handled via offset and limit (1–20 per page), and the total field tells you how many matching postings exist. The facets object in the response carries available filter values — with IDs and counts — for location_country, remote_type, and job_category. Use those IDs directly as filter parameters in follow-up requests.

Common use cases
  • Aggregate open engineering roles across multiple healthcare or tech companies that use Workday, filtered by remote_type
  • Build a job alert system that checks a specific company's Workday site daily and compares new job_req_ids against a stored list
  • Populate a recruiting dashboard with structured job data (title, location, time_type, start_date) sourced from any Workday career portal
  • Classify and tag open positions by job category using the facets.jobFamilyGroup values returned by search_jobs
  • Check can_apply status to filter out closed postings before surfacing listings to candidates
  • Generate a country-level breakdown of open roles at a given employer using Location_Country facet counts
  • Match candidate profiles against job descriptions by fetching full posting text via get_job and running text similarity
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Workday provide an official public developer API for job listings?+
Workday does not offer a public API for reading job postings from its career sites. Access to job data through official channels requires employer-granted API credentials via Workday's partner program, which is not available to general developers.
How do I filter search_jobs results by country or job category?+
Make an initial search_jobs request with just a site_url and optional query. The response includes a facets object with keys like Location_Country and jobFamilyGroup. Each entry contains a values array with name, id, and count fields. Pass the id value from those arrays into the location_country or job_category parameters on your next request to filter results.
What does the posted_on field look like — is it a precise timestamp?+
The posted_on field is a relative label string, such as 'Posted 30+ Days Ago', not an ISO timestamp. The start_date field on get_job is returned in ISO format and reflects the role's intended start date, not the posting date. If you need precise posting timestamps for sorting or deduplication, start_date is the closest structured date field available.
Does the API return the full job description text?+
The get_job endpoint returns plain-text job description content by default. Setting include_html to 'true' also returns the raw HTML version of the description. The search_jobs endpoint returns summary-level data per listing (title, location, posted_on, path) and does not include description text — you would call get_job separately for each listing to retrieve the full description.
Can I retrieve job application data or candidate submissions through this API?+
No. The API covers public job postings — details and search results — only. Application submissions, candidate profiles, and recruiter-side data are not exposed. You can fork this API on Parse and revise it to add an endpoint targeting any additional public data surfaces on Workday career sites.
Page content last updated . Spec covers 2 endpoints from healthcare.wd1.myworkdayjobs.com.
Related APIs in JobsSee all →
nvidia.com API
nvidia.com API
devex.com API
Search and explore global development opportunities including tenders, grants, job postings, news, organizations, and events all in one place. Find funding details, discover career opportunities, and stay updated on international development initiatives through a single integrated platform.
metacareers.com API
Search and browse Meta job openings across all departments and locations. Filter by keyword, experience level, or role category — including University Graduate and AR/VR specializations — and retrieve comprehensive details for each listing, including job description, requirements, salary range, and application link.
amazon.jobs API
Search and browse Amazon job openings by keywords, location, and category, then view detailed information about specific positions. Filter results across multiple job categories and locations with easy pagination.
cursor.directory API
Search and discover AI cursor rules, MCP servers, and job listings organized by category to enhance your development workflow. Browse detailed information about each rule and server to find the tools and configurations that best fit your needs.
airtasker.com API
Search and browse Airtasker tasks by location, category, price, and keywords, then access detailed task information and user profiles. Get location suggestions and category recommendations to discover available work and service opportunities in your area.
104.com.tw API
Search for jobs across Taiwan's largest job board and retrieve detailed job listings including descriptions, requirements, and company information. Find the right career opportunities by browsing thousands of positions or searching for specific roles that match your skills and interests.
naukri.com API
naukri.com API
Workday Jobs API — Job Search & Details · Parse