Workday + Greenhouse + Lever Job Scraper avatar

Workday + Greenhouse + Lever Job Scraper

Pricing

from $10.00 / 1,000 results

Go to Apify Store
Workday + Greenhouse + Lever Job Scraper

Workday + Greenhouse + Lever Job Scraper

Extract jobs from Workday, Greenhouse, and Lever into one normalized dataset. Filter by keywords, title, and location, enrich listings with descriptions and salary data, and automatically deduplicate postings across multiple company career boards.

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

2 days ago

Last modified

Share

One Apify actor that merges three public, key-free job sources into a single normalized dataset.

Input

{
"workdayTenants": [
{ "tenant": "nvidia", "site": "NVIDIAExternalCareerSite", "host": "nvidia.wd5.myworkdayjobs.com" }
],
"greenhouseCompanies": ["stripe", "gitlab"],
"leverCompanies": ["spotify", "coupa"],
"searchText": "machine learning",
"titleQuery": "engineer",
"locationFilter": "remote",
"includeContent": true,
"maxJobsPerSource": 0,
"maxItems": 500,
"impersonate": "chrome",
"requestDelaySecs": 0,
"proxyConfiguration": { "useApifyProxy": true }
}
  • workdayTenants — array of objects. tenant is required; site defaults to External, host defaults to {tenant}.wd5.myworkdayjobs.com. A plain string is also accepted and treated as { "tenant": "<string>" }.
  • greenhouseCompanies / leverCompanies — board slugs.
  • searchText — applies to the Workday listing only. titleQuery and locationFilter are case-insensitive substring filters applied to every source.
  • includeContent — fetch descriptions and parse salary. For Workday this is one extra request per job (use requestDelaySecs to stay polite).
  • maxJobsPerSource / maxItems — per-board and global caps (0 = unlimited).

Output (one record per posting)

{
"source": "greenhouse",
"company": "stripe",
"title": "Software Engineer, Payments",
"location": "San Francisco, CA",
"isRemote": false,
"department": "Engineering",
"team": null,
"employmentType": null,
"url": "https://boards.greenhouse.io/stripe/jobs/123",
"applyUrl": "https://boards.greenhouse.io/stripe/jobs/123",
"postedOn": "2026-01-30T00:00:00Z",
"jobId": 123,
"descriptionHtml": "…",
"descriptionText": "…",
"salary": { "min": 150000, "max": 220000, "currency": "USD", "raw": "$150,000 - $220,000" }
}

Records are deduplicated by URL. descriptionHtml, descriptionText, and salary appear only when includeContent is true and the data is present.