# ATS Jobs Scraper (Greenhouse, Lever, Ashby) (`noclat/ats-jobs-scraper`) Actor

Get every open job from any company's Greenhouse, Lever or Ashby job board as clean JSON: title, location, remote flag, department, salary, dates, apply link, optional full description. Filter by keyword, location, remote, department or posting date.

- **URL**: https://apify.com/noclat/ats-jobs-scraper.md
- **Developed by:** [Martin CONTAL](https://apify.com/noclat) (community)
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $10.00 / 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.

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)

Get **every open job from any company's job board** as clean, structured JSON. Give it company names or job board URLs; it detects whether the company hires through **Greenhouse**, **Lever** or **Ashby**, pulls all open positions from the board's public API, normalises them into one schema, and applies your filters. No browser, no login, no personal data.

Typical uses: job aggregators and job alerts, recruiting and sourcing tools, sales intelligence ("who is hiring for X"), market and salary research, AI agents that need a company's open roles as a tool call.

### What you get for every job

| Field | Example |
| --- | --- |
| `title` | `Senior Backend Engineer` |
| `company`, `ats`, `boardUrl` | `stripe`, `greenhouse`, `https://boards.greenhouse.io/stripe` |
| `url`, `applyUrl` | direct link to the job page and the application form |
| `location`, `locations`, `country`, `isRemote`, `workplaceType` | `Paris, France`, `["Paris, France", "Remote"]`, `FR`, `true`, `hybrid` |
| `department`, `team`, `employmentType` | `Engineering`, `Payments`, `Full-time` |
| `salaryMin`, `salaryMax`, `salaryCurrency`, `salaryInterval`, `salaryText` | `120000`, `160000`, `USD`, `1 YEAR`, `$120K – $160K • Offers Equity` (when the company publishes it) |
| `publishedAt`, `updatedAt`, `scrapedAt` | ISO dates |
| `descriptionText`, `descriptionHtml` | full job description, when **Include full description** is on |

### Input

```json
{
    "companies": ["stripe", "ashby:ramp", "https://jobs.lever.co/palantir"],
    "keyword": "engineer",
    "location": "Paris",
    "remoteOnly": false,
    "postedWithinDays": 30,
    "includeDescription": false,
    "maxJobsPerCompany": 200
}
```

- **companies**: plain slugs (`stripe`, the ATS is auto-detected), prefixed slugs (`lever:palantir`, `ashby:ramp`, `greenhouse:stripe`) or full board URLs.
- **keyword**, **location**, **department**, **remoteOnly**, **postedWithinDays**: optional filters, case-insensitive.
- **includeDescription**: adds the full description as HTML and plain text.
- **maxJobsPerCompany**, **maxJobs**: caps.

The run's key-value store also gets a `SUMMARY` record: boards found, positions seen, matched, pushed, and the companies with no public board.

### Output example

```json
{
    "ats": "ashby",
    "company": "ramp",
    "boardUrl": "https://jobs.ashbyhq.com/ramp",
    "id": "34413f8d-26bf-4bbc-8ade-eb309a0e2245",
    "title": "Security Engineer, Cloud",
    "url": "https://jobs.ashbyhq.com/ramp/34413f8d-26bf-4bbc-8ade-eb309a0e2245",
    "applyUrl": "https://jobs.ashbyhq.com/ramp/34413f8d-26bf-4bbc-8ade-eb309a0e2245/application",
    "location": "New York, NY (HQ)",
    "locations": ["New York, NY (HQ)"],
    "country": "US",
    "isRemote": true,
    "workplaceType": "Hybrid",
    "employmentType": "FullTime",
    "department": "Engineering",
    "team": "Backend",
    "salaryMin": 211400,
    "salaryMax": 290600,
    "salaryCurrency": "USD",
    "salaryInterval": "1 YEAR",
    "salaryText": "$211.4K – $290.6K • Offers Equity",
    "publishedAt": "2026-04-07T17:12:35.753+00:00",
    "updatedAt": null,
    "scrapedAt": "2026-09-21T01:12:00.000Z"
}
```

### Pricing

Pay per event: **$10.01 per 1,000 jobs returned**, and platform usage is on us. Filters apply before charging, so a keyword, location or date filter only bills the jobs you keep, and a run that matches nothing costs a hundredth of a cent. Use **maxJobs**, **maxJobsPerCompany** or the run's maximum total charge to cap spend.

### How to find a company's slug

- Greenhouse boards live at `boards.greenhouse.io/<slug>` or `job-boards.greenhouse.io/<slug>`.
- Lever boards live at `jobs.lever.co/<slug>`.
- Ashby boards live at `jobs.ashbyhq.com/<slug>`.
- Not sure? Pass the company name; the Actor tries the three ATSs in turn and reports the ones it cannot find in `SUMMARY.notFound`.

### Using it from an AI agent or via API

The Actor is a natural tool for agents: input is a short JSON, output is a dataset of uniform job objects. Call it through the [Apify API](https://docs.apify.com/api/v2), the [Apify MCP server](https://mcp.apify.com), or any Apify client library, and read the results from the default dataset.

### Legal and data policy

This Actor only reads the **public job board APIs** that Greenhouse, Lever and Ashby expose for the companies' own career pages (no authentication, no rate-limit circumvention, no browser automation). It collects **job postings, not people**: no candidate or employee data is processed. Respect the target companies' terms when you reuse their content.

### More tools

Same approach, same output discipline:

- **[Sitemap & llms.txt URL Extractor](https://apify.com/noclat/sitemap-llms-txt-extractor)** — every URL a website publishes, from robots.txt, all sitemaps and llms.txt.
- **[Website Screenshot & PDF API](https://apify.com/noclat/website-screenshot-pdf)** — any public page rendered into an image or an A4 PDF.

### FAQ

**Does it support Workday, SmartRecruiters, Workable or Teamtailor?** Not yet. Tell us in the Issues tab which ATS you need next.

**How fresh is the data?** Each run reads the board live. Schedule the Actor (hourly, daily) to keep a feed up to date, and use `postedWithinDays` to get only new roles.

**A company shows "not found".** Either it uses another ATS, or its board slug differs from its name. Open the careers page, copy the board URL and pass it directly.

# Actor input Schema

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

Company slugs or job board URLs. Accepts plain slugs ("stripe", the ATS is auto-detected), prefixed slugs ("lever:palantir", "ashby:ramp", "greenhouse:stripe") or full URLs (https://boards.greenhouse.io/stripe, https://jobs.lever.co/palantir, https://jobs.ashbyhq.com/ramp).

## `keyword` (type: `string`):

Only keep jobs whose title (or description, when included) contains this text. Case-insensitive.

## `location` (type: `string`):

Only keep jobs whose location or country contains this text, e.g. "Paris", "United States", "Remote".

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

Only keep positions flagged as remote by the ATS or whose location mentions remote.

## `department` (type: `string`):

Only keep jobs whose department or team contains this text, e.g. "Engineering", "Sales".

## `postedWithinDays` (type: `integer`):

Only keep jobs published (or updated) within the last N days. Leave empty for all open positions.

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

Add the full job description as HTML and plain text to every result. Makes results larger.

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

Cap the number of results per company. Leave empty for no cap.

## `maxJobs` (type: `integer`):

Stop after this many results in total. Leave empty for no cap.

## Actor input object example

```json
{
  "companies": [
    "stripe",
    "ashby:ramp",
    "lever:palantir"
  ],
  "keyword": "engineer",
  "remoteOnly": false,
  "includeDescription": false
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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": [
        "stripe",
        "ashby:ramp",
        "lever:palantir"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("noclat/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": [
        "stripe",
        "ashby:ramp",
        "lever:palantir",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("noclat/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": [
    "stripe",
    "ashby:ramp",
    "lever:palantir"
  ]
}' |
apify call noclat/ats-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,noclat/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/xet8uAGIDhCIr7zgy/builds/dIROZotbqRJgPEg6D/openapi.json
