NVIDIA Jobs Scraper avatar

NVIDIA Jobs Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
NVIDIA Jobs Scraper

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

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

An Apify actor that scrapes NVIDIA job postings from its public Workday careers site.

Input

All fields optional.

FieldTypeDescription
searchTextstringServer-side Workday keyword (title/description). Empty = all jobs.
locationFilterstringKeep only jobs whose location contains this text. E.g. "Santa Clara", "India".
titleQuerystringKeep only jobs whose title contains this text. E.g. "GPU".
maxJobsintegerStop after this many (filtered) jobs. NVIDIA lists thousands — set this unless you want everything.
includeContentbooleanFetch each detail page for full description / time type / req ID (one extra request per job). Default true.
requestDelaySecsstringPoliteness delay before each detail fetch (default "0.2").
impersonatestringcurl_cffi TLS fingerprint (chrome, chrome124, safari17_0, …). Default chrome.
proxyConfigurationobjectRecommended 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.