NewSearch millions of jobs from your AI agent with MCP

One API across every ATS.

Greenhouse, Lever, Ashby, Workday, SmartRecruiters and 30+ more, in one normalized endpoint. No board tokens to collect, no per-ATS parsers to maintain.

Why ATS jobs are hard to aggregate

Every major ATS publishes job postings per tenant, not in aggregate. There is no endpoint at Greenhouse or Lever that returns all jobs across all customers.
That means the hard part of an ATS aggregator is not reading the API. It is discovering which companies exist on each ATS in the first place.
Greenhouse's public board endpoint is boards-api.greenhouse.io/v1/boards/<company>/jobs. You have to already know the board token for every company you want.
Workday has no public job-postings API at all. Its Staffing REST API needs OAuth credentials granted by each tenant individually, which works only if you are that company.
A job aggregator therefore has to maintain a directory of tenants per ATS, and keep it current as companies join and leave.

Three ways to get ATS postings

ApproachAuthCoverage per callTenant discoverySchema
Raw ATS endpointsNone for public boards, OAuth for WorkdayOne companyYou maintain the tenant list yourselfDifferent per ATS
Apify actorsApify tokenOne run, per configured setYou supply the companies or the actor's own listPer actor, varies
JobsPipeOne API keyEvery tenant on every source at onceMaintained for you across 39 sourcesOne schema for all of them

One request, three ATS platforms

curl -s -X POST https://api.jobspipe.dev/v1/sandbox/jobs/search \
  -H 'content-type: application/json' \
  -d '{
    "source_or": ["greenhouse", "lever", "ashby"],
    "posted_at_max_age_days": 7,
    "limit": 25
  }'

source_or takes any combination of sources. Drop it and the query spans all of them. No key is needed for the sandbox, which returns sample records so you can check the shape before signing up.

Coverage on the four biggest

ATSCoverageRefreshDetail
Greenhouse3,000+ public boards24h refreshGreenhouse source page
LeverEvery public Lever customer24h refreshLever source page
AshbyEvery public Ashby customer, 2,000+24h refresh, 6h on high volumeAshby source page
Workday45,000+ live postings from verified public tenants24h refreshWorkday source page

FAQ

What is an ATS job aggregator?

A service that reads job postings from many applicant tracking systems and returns them through one interface with one schema. The aggregation is the point: each ATS publishes per company, so without an aggregator you are querying Greenhouse for one employer at a time, then doing it again differently for Lever, then again for Workday.

Can I just call the Greenhouse and Lever APIs directly?

Yes, and for a small fixed list of employers that is the right call. Greenhouse's job board endpoint and Lever's postings endpoint are public and need no key. The limit is discovery, not access: both are addressed per company, so you need every company's board token or account name in advance. Direct integration is cheapest when you know exactly whose jobs you want and that list rarely changes.

Why is Workday harder than the others?

Workday publishes no public job-postings API. Its Staffing REST API is OAuth-scoped per tenant, granted by the customer, so it serves the employer rather than anyone reading the market. Every Workday customer instead hosts a careers site on a myworkdayjobs.com subdomain, and the tenant list is the thing you have to construct.

How is this different from building my own aggregator?

Mostly it is the same work, done once. The engineering is not the per-source parsing, it is keeping a tenant directory current across every ATS as companies adopt, migrate and churn. If you want to build it anyway, there is a full write-up of what that involves.

Which ATS platforms are covered?

39 sources, including Greenhouse, Lever, Ashby, Workday, SmartRecruiters, Workable, BambooHR, iCIMS, Paylocity and SuccessFactors, alongside job boards like Indeed and Glassdoor. Every posting carries the source that produced it, so you can filter to one ATS or exclude one entirely.

Can I try it without an API key?

Yes. The sandbox endpoint takes the same filters and needs no authentication, so you can confirm the request and response shape first. It returns sample records rather than live postings; swap in /v1/jobs/search with a key for the real index.

Building one yourself instead? How to build a job aggregator covers the tenant-discovery problem in full.