NVIDIA Jobs Scraper
Pricing
from $10.00 / 1,000 results
NVIDIA Jobs Scraper
An **NVIDIA Workday job scraper (Apify actor)** collects job postings from NVIDIA’s careers site and filters them by keyword, title, or location. It outputs structured job data like title, location, job ID, URL, and optional full description and salary details.
Pricing
from $10.00 / 1,000 results
Rating
0.0
(0)
Developer
Jamshaid Arif
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
a day ago
Last modified
Categories
Share
An Apify actor that scrapes NVIDIA job postings from its public Workday careers site.
Input
All fields optional.
| Field | Type | Description |
|---|---|---|
searchText | string | Server-side Workday keyword (title/description). Empty = all jobs. |
locationFilter | string | Keep only jobs whose location contains this text. E.g. "Santa Clara", "India". |
titleQuery | string | Keep only jobs whose title contains this text. E.g. "GPU". |
maxJobs | integer | Stop after this many (filtered) jobs. NVIDIA lists thousands — set this unless you want everything. |
includeContent | boolean | Fetch each detail page for full description / time type / req ID (one extra request per job). Default true. |
requestDelaySecs | string | Politeness delay before each detail fetch (default "0.2"). |
impersonate | string | curl_cffi TLS fingerprint (chrome, chrome124, safari17_0, …). Default chrome. |
proxyConfiguration | object | Recommended for large/scheduled runs — Workday rate-limits big crawls. |
Example input
{"searchText": "deep learning","locationFilter": "Santa Clara","titleQuery": "engineer","maxJobs": 100,"includeContent": true}
Output
One dataset item per job:
{"title": "Senior Deep Learning Engineer","company": "NVIDIA","location": "US, CA, Santa Clara","isRemote": false,"postedOn": "Posted 5 Days Ago","reqId": "JR1998111","jobReqId": "JR1998111","timeType": "Full time","startDate": "2026-05-01","country": "United States of America","url": "https://nvidia.wd5.myworkdayjobs.com/NVIDIAExternalCareerSite/job/...","descriptionHtml": "<p>...</p>","descriptionText": "...","salary": { "min": 180000, "max": 280000, "currency": "USD", "raw": "$180,000 - $280,000" }}
timeType, startDate, country, descriptionHtml/Text, and salary come
from the detail page and appear only when includeContent is on. salary is a
best-effort regex over the description and is null when no simple range is
present.