# ATS Jobs Scraper — Greenhouse, Lever, Ashby, Workable & more (`chorelet/ats-jobs-scraper`) Actor

Open jobs straight from company career boards on Greenhouse, Lever, Ashby, Workable, SmartRecruiters and Recruitee — one unified schema with title, department, location, remote flag, salary, dates, apply URL and full description. Paste a board URL or a company slug.

- **URL**: https://apify.com/chorelet/ats-jobs-scraper.md
- **Developed by:** [Chorelet](https://apify.com/chorelet) (community)
- **Categories:** Jobs, Lead generation, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.40 / 1,000 jobs

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## ATS Jobs Scraper — Greenhouse, Lever, Ashby, Workable & more

Get every open job straight from a company's own careers page. Paste board URLs — or just company names — and download **one unified table** with title, department, team, location, remote flag, employment type, salary where it is published, posting date, apply link and the full description, as JSON, CSV or Excel, or through the API.

Six applicant tracking systems are supported: **Greenhouse, Lever, Ashby, Workable, SmartRecruiters and Recruitee**. Each one is read through its own public job-board API — the same endpoint the company's careers page calls in your browser. No keys, no login, no proxies, nothing parsed out of HTML.

### Why this Actor

- **The source, not an aggregator.** Job boards copy from each other and lag by days; this reads the company's own board, so a posting shows up the minute it is published.
- **Six ATS platforms, one table.** Greenhouse, Lever, Ashby, Workable, SmartRecruiters and Recruitee normalised to the same fields — no six parsers to maintain.
- **Paste anything.** A board URL, `greenhouse:stripe`, or just `stripe`: the platform is detected for you.
- **Built for daily runs.** `postedAfter: "24 hours"` plus keyword, location and remote filters return only what is new, and you pay only for the rows you keep.

### Sample output

One item of the dataset (long values shortened):

```json
{
  "platform": "smartrecruiters",
  "company": "ServiceNow",
  "title": "Sr Advisory Solution Consultant- Moveworks",
  "department": "Sales",
  "location": "Louisville, Kentucky, United States",
  "isRemote": true,
  "employmentType": "Full-time",
  "salaryText": null,
  "postedAt": "2026-09-24T15:51:37.280Z",
  "applyUrl": "https://jobs.smartrecruiters.com/ServiceNow/744000151660009-sr-advisory-solution-consultant-moveworks?oga=true"
}
```

### What you get

- Six ATS platforms, one schema — compare companies without writing six parsers
- Auto-detection: paste `stripe` and the Actor finds the platform for you
- Keyword, location, remote-only and date filters, so a daily run returns only what is new
- Salary parsed into `salaryMin` / `salaryMax` / `salaryCurrency` wherever the board publishes it
- Full description as HTML and as plain text, switchable off for a lighter dataset
- Monitored daily

### Input

- **Company job boards** — any mix of:
  - board URLs: `https://boards.greenhouse.io/stripe`, `https://job-boards.greenhouse.io/figma`, `https://jobs.lever.co/leverdemo`, `https://jobs.ashbyhq.com/ramp`, `https://apply.workable.com/stiiizy`, `https://careers.smartrecruiters.com/ServiceNow`, `https://acme.recruitee.com`
  - explicit form: `greenhouse:stripe`, `lever:netflix`
  - bare company slug: `stripe` — every ATS is tried until one answers
- **Keywords**, **Locations**, **Remote only**, **Only jobs posted after**, **Max jobs per company**, **Include job descriptions**.

### Limits and notes

- Only public boards are readable. A careers page built on something else (Workday, Taleo, SAP SuccessFactors, a custom CMS) is not supported — the Actor reports it per company in the run summary instead of failing the whole run.
- `company` is the name the board publishes; Lever, Ashby and Recruitee do not publish one, so the slug is used.
- SmartRecruiters keeps descriptions on a separate endpoint: with descriptions on, it costs one extra request per job (turn them off for large boards).
- Salary is published by a minority of companies — mostly on Ashby and Lever, and for roles in jurisdictions with pay-transparency laws.

### Input example

```json
{
  "companies": [
    "https://boards.greenhouse.io/stripe",
    "https://jobs.ashbyhq.com/ramp",
    "lever:leverdemo"
  ],
  "remoteOnly": false,
  "postedAfter": "30 days",
  "maxJobsPerCompany": 100,
  "includeDescription": true
}
```

### How much does it cost?

Pay per job — no subscription, no minimum, no charge for platform usage.

| Volume | Price |
|---|---|
| 1,000 jobs | $2.00 |
| 10,000 jobs | $20.00 |
| 100,000 jobs | $200.00 |

The Apify **free plan includes $5 of usage every month** — about 2,500 jobs with this Actor, no card needed. Nothing else is charged: platform usage is included in the price, and Apify Bronze, Silver and Gold subscribers get 10%, 20% and 30% off these prices.

### Use it from code, n8n, Make, Zapier or an AI agent

Run the Actor and download the dataset in one call (JSON by default; add `&format=csv` or `xlsx`):

```bash
curl -X POST "https://api.apify.com/v2/acts/chorelet~ats-jobs-scraper/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"companies": ["https://boards.greenhouse.io/stripe", "https://jobs.ashbyhq.com/ramp", "lever:leverdemo"], "remoteOnly": false, "postedAfter": "30 days", "maxJobsPerCompany": 100, "includeDescription": true}'
```

Python:

```python
from apify_client import ApifyClient

client = ApifyClient("YOUR_APIFY_TOKEN")
run = client.actor("chorelet/ats-jobs-scraper").call(run_input={"companies": ["https://boards.greenhouse.io/stripe", "https://jobs.ashbyhq.com/ramp", "lever:leverdemo"], "remoteOnly": false, "postedAfter": "30 days", "maxJobsPerCompany": 100, "includeDescription": true})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)
```

- **n8n, Make, Zapier** — use the Apify node/module: run the Actor, then "get dataset items".
- **Google Sheets, Slack, webhooks** — add an integration on the run's *Integrations* tab.
- **AI agents** — the Actor is available as a tool through the Apify MCP server; the dataset schema describes every field for the model.
- **Schedules** — run it hourly, daily or weekly from the *Schedules* tab.

### FAQ

**Which companies can I track?**

Any company whose careers page runs on Greenhouse, Lever, Ashby, Workable, SmartRecruiters or Recruitee — that is most of the startup and tech world. Open a company's careers page and look at the URL: if it contains greenhouse.io, lever.co, ashbyhq.com, workable.com, smartrecruiters.com or recruitee.com, it works. Workday, Taleo and custom career sites are not supported.

**Do I need an API key from the ATS?**

No. Every platform publishes its job board through a public endpoint that needs no authentication — the same one the careers page itself calls.

**How do I watch many companies?**

Put every board on its own line in the input, set `postedAfter` to `24 hours` and schedule the Actor daily. Each run returns just the new postings, so a watchlist of 50 companies costs cents a day.

**Why is the salary empty?**

Most companies do not publish one. When a board does (Ashby and Lever most often), you get the text exactly as published plus a parsed range in `salaryMin`, `salaryMax` and `salaryCurrency`.

**Is scraping job boards legal?**

The Actor reads public job listings that companies publish for candidates, through the platforms' own public endpoints, and it does not touch applicant data. You are responsible for how you use the data.

### Support

Questions, missing fields or a source that changed? Open an issue on the *Issues* tab or write to support@chorelet.app — problems are usually fixed within a day, and the Actor is checked every morning by an automated test run. If the Actor saved you time, a short review on its Store page helps other people find it.

# Actor input Schema

## `companies` (type: `array`):

One line per company. Paste the board URL (`https://boards.greenhouse.io/stripe`, `https://jobs.lever.co/leverdemo`, `https://jobs.ashbyhq.com/ramp`, `https://apply.workable.com/stiiizy`, `https://careers.smartrecruiters.com/ServiceNow`, `https://acme.recruitee.com`), or write `greenhouse:stripe`, or just the company slug — then every ATS is tried until one answers.

## `keywords` (type: `array`):

Keep only jobs whose title, department, team, location, company or description contains any of these (case-insensitive), e.g. `engineer`, `data`, `marketing`. Empty = every open job.

## `locations` (type: `array`):

Keep only jobs whose location matches any of these, e.g. `Berlin`, `United States`, `Remote`. Empty = every location.

## `remoteOnly` (type: `boolean`):

Keep only postings the board marks as remote.

## `postedAfter` (type: `string`):

Absolute date `2026-01-31` or relative `24 hours`, `7 days`, `1 month`. Use it for daily runs that return only what is new.

## `maxJobsPerCompany` (type: `integer`):

Newest first per company.

## `includeDescription` (type: `boolean`):

Full description as HTML and plain text. Turn it off for a lighter dataset — on SmartRecruiters it also saves one request per job.

## Actor input object example

```json
{
  "companies": [
    "https://boards.greenhouse.io/stripe",
    "https://jobs.ashbyhq.com/ramp",
    "lever:leverdemo"
  ],
  "keywords": [],
  "locations": [],
  "remoteOnly": false,
  "postedAfter": "30 days",
  "maxJobsPerCompany": 100,
  "includeDescription": true
}
```

# Actor output Schema

## `jobs` (type: `string`):

All jobs — items of the default dataset. Use ?format=csv or xlsx on this URL for spreadsheets.

## `summary` (type: `string`):

Detected platform, jobs listed and kept per company, plus errors.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "companies": [
        "https://boards.greenhouse.io/stripe",
        "https://jobs.ashbyhq.com/ramp",
        "lever:leverdemo"
    ],
    "keywords": [],
    "locations": [],
    "remoteOnly": false,
    "postedAfter": "30 days",
    "maxJobsPerCompany": 100,
    "includeDescription": true
};

// Run the Actor and wait for it to finish
const run = await client.actor("chorelet/ats-jobs-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {
    "companies": [
        "https://boards.greenhouse.io/stripe",
        "https://jobs.ashbyhq.com/ramp",
        "lever:leverdemo",
    ],
    "keywords": [],
    "locations": [],
    "remoteOnly": False,
    "postedAfter": "30 days",
    "maxJobsPerCompany": 100,
    "includeDescription": True,
}

# Run the Actor and wait for it to finish
run = client.actor("chorelet/ats-jobs-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "companies": [
    "https://boards.greenhouse.io/stripe",
    "https://jobs.ashbyhq.com/ramp",
    "lever:leverdemo"
  ],
  "keywords": [],
  "locations": [],
  "remoteOnly": false,
  "postedAfter": "30 days",
  "maxJobsPerCompany": 100,
  "includeDescription": true
}' |
apify call chorelet/ats-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,chorelet/ats-jobs-scraper"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/hZgivsg0hw09o257p/builds/inKo3Tamz5tua1kjE/openapi.json
