nvidia.wd5.myworkdayjobs.com APInvidia.wd5.myworkdayjobs.com ↗
Search NVIDIA job postings by keyword, location, and department. Retrieve full job details including description, requirements, and application URLs.
curl -X GET 'https://api.parse.bot/scraper/e5cfae17-8775-4522-bedd-f18bbf73036a/search_jobs?query=data+scientist&start=0' \ -H 'X-API-Key: $PARSE_API_KEY'
Search NVIDIA job listings by keyword, location, and filters. Returns paginated results with 10 jobs per page.
| Param | Type | Description |
|---|---|---|
| query | string | Search keyword (e.g. 'software engineer', 'data scientist') |
| start | integer | Pagination offset (0-based, increments of 10) |
| category | string | Job category filter (e.g. 'engineering', 'sales', 'marketing') |
| location | string | Location filter (e.g. 'Santa Clara', 'California') |
| location_type | string | Work location type filter: 'onsite', 'remote', or 'remote_local' |
{
"type": "object",
"fields": {
"jobs": "array of job listing summaries with id, job_id, title, locations, department, posted_date, work_location_option, and url",
"count": "number of jobs returned on this page",
"start": "current pagination offset",
"total": "total number of matching jobs"
},
"sample": {
"data": {
"jobs": [
{
"id": 893394059912,
"url": "https://jobs.nvidia.com/careers/job/893394059912",
"title": "Validation Data Scientist, Verification and Validation - Autonomous Vehicles",
"job_id": "JR2014513",
"locations": [
"China, Shanghai",
"China, Beijing",
"China, Shenzhen"
],
"department": "Engineer, Sys SW",
"posted_date": 1773619200,
"work_location_option": "onsite"
}
],
"count": 10,
"start": 0,
"total": 207
},
"status": "success"
}
}About the nvidia.wd5.myworkdayjobs.com API
This API provides access to NVIDIA's current job listings through 2 endpoints, returning up to 10 results per page with fields like title, department, locations, and work_location_option. The search_jobs endpoint accepts keyword queries, location filters, and category filters to narrow results across NVIDIA's full open-role catalog, while get_job_details returns the complete posting for a specific position including its apply_url and job_family.
Searching NVIDIA Job Listings
The search_jobs endpoint accepts five optional parameters: query for keyword matching (e.g. 'machine learning', 'systems engineer'), location to filter by city or state, location_type to restrict results to onsite, remote, or remote_local roles, category to target a functional area like engineering or marketing, and start for pagination in increments of 10. Each response includes a total count of matching jobs alongside the current page's count and start offset, making it straightforward to walk through large result sets. Each job in the jobs array carries a numeric id, a human-readable job_id (e.g. JR2010588), title, locations array, department, posted_date, work_location_option, and a direct url to the public posting.
Retrieving Full Job Details
The get_job_details endpoint takes the position_id (the numeric id from search results) and returns the complete posting record. Beyond the summary fields, this includes a full job description, time_type (e.g. Full time), job_family categories, primary location string, and an apply_url that points directly to the application form. This is the endpoint to call when you need to render a full job page or extract the detailed requirements text.
Pagination and Filtering Notes
Results are returned in pages of 10. To retrieve the next page, increment start by 10. The total field in the search_jobs response tells you how many matching jobs exist across all pages. Combining query with location and location_type produces more targeted result sets; omitting all parameters returns the full open-role feed sorted by recency.
- Build a job board widget that surfaces NVIDIA openings filtered by location and work_location_option for remote-first candidates.
- Track new NVIDIA engineering roles by polling search_jobs with a category filter and comparing posted_date against previous results.
- Aggregate NVIDIA job counts by department field to analyze hiring trends across business units.
- Enrich a recruiting CRM by pulling full job descriptions via get_job_details for positions that match a sourcing keyword list.
- Alert hiring managers when NVIDIA posts roles in a specific job_family by monitoring search_jobs results.
- Generate a structured dataset of NVIDIA job titles, locations, and time_type values for labor market analysis.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 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.