ATS Jobs Scraper for Greenhouse, Lever, Ashby & More avatar

ATS Jobs Scraper for Greenhouse, Lever, Ashby & More

Pricing

from $0.06 / 1,000 job posting saveds

Go to Apify Store
ATS Jobs Scraper for Greenhouse, Lever, Ashby & More

ATS Jobs Scraper for Greenhouse, Lever, Ashby & More

Scrape public Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, and Personio job boards into one normalized dataset with titles, locations, departments, apply URLs, dates, and optional descriptions.

Pricing

from $0.06 / 1,000 job posting saveds

Rating

0.0

(0)

Developer

Hanna Nosova

Hanna Nosova

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Categories

Share

ATS Jobs Scraper: Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, and Personio Jobs in One Dataset

Scrape public ATS job boards from Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, and Personio with a single Apify Actor and export normalized job postings.

Use this actor when you need normalized jobs from multiple applicant tracking systems in one recruiting dataset.

What does ATS Jobs Scraper do?

ATS Jobs Scraper extracts public ATS job postings from Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, and Personio job boards for recruiting, sales, market research, and job-data workflows.

It returns normalized job posting output such as title, location, department, company, apply URL, published date, and description.

  • โœ… Greenhouse public job boards
  • โœ… Lever public job boards
  • โœ… Ashby public hosted job pages
  • โœ… Recruitee public career sites
  • โœ… SmartRecruiters public job pages
  • โœ… Personio public job portals

It saves one normalized dataset so every row has the same job fields regardless of source. The source field can be greenhouse, lever, ashby, recruitee, smartrecruiters, or personio.

Who is it for?

Recruiting teams use it to monitor hiring activity across target companies.

Sales teams use it to find companies that are hiring for roles related to their product.

Market researchers use it to track demand for specific skills, locations, departments, or seniority levels.

Job aggregators use it to collect public postings from many employer-hosted boards.

Data teams use it to standardize Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, and Personio data before loading it into a warehouse.

Why use one combined scraper?

Many company lists contain a mix of Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, and Personio boards.

Running one combined actor is simpler than maintaining separate workflows for each ATS.

The actor detects the source from URLs when possible and also accepts source-specific slugs.

Supported sources

Greenhouse boards include URLs such as https://boards.greenhouse.io/airbnb.

Lever boards include URLs such as https://jobs.lever.co/spotify.

Ashby boards include URLs such as https://jobs.ashbyhq.com/openai.

Only public, no-login job boards are supported.

What data can you extract?

Each job posting can include:

FieldDescription
sourcegreenhouse, lever, ashby, recruitee, smartrecruiters, or personio
companySlugBoard slug or company identifier
companyNamePublic company name when available
jobIdSource job id
titleJob title
locationPrimary location text
departmentDepartment when available
teamTeam when available
workplaceTypeRemote / hybrid / onsite signal when available
employmentTypeFull-time, part-time, contract, or commitment text
compensationPublic compensation summary when available
jobUrlPublic job page URL
applyUrlPublic apply URL when available
descriptionPlain text job description when requested
descriptionHtmlHTML description when requested
publishedAtPublic creation or published date
updatedAtPublic updated date
sourceRawMetadataUseful source-specific extras
scrapedAtTimestamp for this run

How much does it cost to scrape ATS job boards?

The actor uses pay-per-event pricing.

There is a small run-start charge plus a per-job charge for each saved job posting.

Keep the first run small by using the default maxItems value.

Large monitoring jobs are cheaper to run as one batch than as many tiny runs.

Quick start

  1. Open the actor on Apify.
  2. Add public Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, or Personio URLs in Mixed ATS board URLs.
  3. Set Maximum jobs.
  4. Choose whether to include descriptions.
  5. Run the actor.
  6. Export the dataset as JSON, CSV, Excel, XML, or via API.

Input options

Mixed ATS board URLs

Use startUrls when you have a mixed list of public board URLs.

The actor auto-detects Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, or Personio from each URL.

Greenhouse board tokens or URLs

Use greenhouseBoards for Greenhouse-only inputs.

Examples:

  • airbnb
  • https://boards.greenhouse.io/airbnb

Lever company slugs or URLs

Use leverCompanies for Lever-only inputs.

Examples:

  • spotify
  • https://jobs.lever.co/spotify

Ashby board slugs or URLs

Use ashbyBoards for Ashby-only inputs.

Examples:

  • openai
  • https://jobs.ashbyhq.com/openai

Maximum jobs

maxItems limits saved jobs across all sources.

Set it low for tests and higher for production jobs.

Include descriptions

Turn on includeDescriptions when you need full job descriptions.

Turn it off when you only need listings and want faster runs.

Filtering jobs

Use departmentFilter to match department or team text.

Use locationFilter to match location text.

Use keywordFilter to match title and description text.

Filters are case-insensitive.

Example input

{
"startUrls": [
{ "url": "https://boards.greenhouse.io/airbnb" },
{ "url": "https://jobs.lever.co/spotify" },
{ "url": "https://jobs.ashbyhq.com/openai" }
],
"maxItems": 30,
"includeDescriptions": true,
"locationFilter": "remote"
}

Example output

{
"source": "lever",
"companySlug": "spotify",
"companyName": null,
"jobId": "abc123",
"title": "Data Engineer",
"location": "New York",
"department": "Engineering",
"team": "Data Platform",
"workplaceType": "hybrid",
"employmentType": "Full-time",
"compensation": null,
"jobUrl": "https://jobs.lever.co/spotify/...",
"applyUrl": "https://jobs.lever.co/spotify/.../apply",
"description": "Plain text description...",
"publishedAt": "2026-06-01T00:00:00.000Z",
"updatedAt": null,
"scrapedAt": "2026-06-24T00:00:00.000Z"
}

Tips for best results

Use public company career board URLs, not search engine result URLs.

If one board returns no jobs, confirm the company still uses that ATS.

Use source-specific inputs when you already know the ATS type.

Set includeDescriptions to false for fast job-count monitoring.

Set includeDescriptions to true for keyword analysis and enrichment workflows.

Integrations

Send the dataset to Google Sheets for recruiter review.

Load JSON into BigQuery, Snowflake, Postgres, or DuckDB.

Trigger the actor from Zapier or Make when a target-account list changes.

Use Apify webhooks to notify your team when new postings are scraped.

Combine with enrichment tools to classify roles, seniority, and skills.

API usage: Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: process.env.APIFY_TOKEN });
const run = await client.actor('fetch_cat/ats-jobs-scraper').call({
startUrls: [{ url: 'https://jobs.lever.co/spotify' }],
maxItems: 20
});
console.log(run.defaultDatasetId);

API usage: Python

from apify_client import ApifyClient
client = ApifyClient('YOUR_APIFY_TOKEN')
run = client.actor('fetch_cat/ats-jobs-scraper').call(run_input={
'startUrls': [{'url': 'https://boards.greenhouse.io/airbnb'}],
'maxItems': 20,
})
print(run['defaultDatasetId'])

API usage: cURL

curl -X POST 'https://api.apify.com/v2/acts/fetch_cat~ats-jobs-scraper/runs?token=YOUR_APIFY_TOKEN' \
-H 'Content-Type: application/json' \
-d '{"startUrls":[{"url":"https://jobs.ashbyhq.com/openai"}],"maxItems":20}'

MCP usage

Use the actor from Claude Desktop or Claude Code through Apify MCP.

Use MCP or the Apify API to trigger scheduled career-board monitoring and send normalized datasets to Sheets, CRMs, BI tools, or warehouses.

MCP tool URL format:

https://mcp.apify.com/?tools=fetch_cat/ats-jobs-scraper

Claude Code setup example:

$claude mcp add apify-ats-jobs "https://mcp.apify.com/?tools=fetch_cat/ats-jobs-scraper"

Claude Desktop JSON config example:

{
"mcpServers": {
"apify-ats-jobs": {
"url": "https://mcp.apify.com/?tools=fetch_cat/ats-jobs-scraper"
}
}
}

Example prompts:

  • โ€œScrape these ten ATS boards and summarize remote engineering roles.โ€
  • โ€œFind companies hiring sales engineers in Europe.โ€
  • โ€œCompare new AI infrastructure job postings across this target account list.โ€

Public data and legality

The actor collects publicly available job postings.

It does not log in, bypass private accounts, or access employer-only candidate data.

Always review source website terms and your local laws before using scraped data.

Limitations

Only public ATS boards are supported. v1 covers Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, and Personio where the tenant exposes public listings without login or private data.

Some companies customize or migrate career pages, which can cause empty results.

Descriptions and metadata vary by ATS and by employer configuration.

FAQ and troubleshooting

Why did a board return zero jobs?

The company may have no open roles, may use a different ATS, or may have changed its public board URL.

Why is a field null?

Not every ATS exposes every field. The actor keeps a stable schema and uses null when public data is unavailable.

Why are descriptions slower?

Descriptions can require more data per job, especially for Ashby detail pages. Disable descriptions for fast listing checks.

Can I scrape multiple ATS platforms in one run?

Yes. Add mixed Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, and Personio public board URLs to one run and the actor normalizes the results into one dataset.

Does this include private applicant data?

No. The actor collects public job postings only. It does not log in, access applicant tracking back offices, or collect candidate/applicant records.

Can I use it as an ATS jobs API?

Yes. Run it through the Apify API, schedules, webhooks, or MCP to refresh public career-board data and export the normalized dataset to your own tools.

Changelog

0.1

Initial combined public jobs scraper for Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, and Personio.

Support

If a public board fails, include the exact URL, input JSON, and run ID when requesting support.

Data freshness

Each run fetches current public data and records scrapedAt for traceability.

Export formats

Apify datasets can be exported as JSON, CSV, Excel, XML, RSS, or HTML.

Scheduling

Use Apify schedules to monitor the same company list daily or weekly.

Webhooks

Use Apify webhooks to trigger downstream workflows after each successful run.

Storage

Results are saved to the default Apify dataset for the run.

Privacy

The actor does not collect private applicant data or candidate profiles.