# Job Board Scraper: Greenhouse, Lever, Ashby (no login) (`italy/ats-jobs-scraper`) Actor

Clean, structured job listings from company career pages on Greenhouse, Lever and Ashby. Salary, location, remote flag, department. Public data only.

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

## Pricing

from $3.00 / 1,000 job listings

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

## Job Board Scraper: Greenhouse, Lever & Ashby (no login, no proxy)

Get every open job of a company as clean, structured data. Paste a career-page link or write `greenhouse:stripe`, and you get title, department, location, remote flag, salary (when the company publishes it), publish date and the direct link. One consistent format across Greenhouse, Lever and Ashby.

### What you can do with it

- Track hiring at competitors, customers or investment targets and see which teams grow.
- Build a job feed or newsletter for a niche, region or skill.
- Feed job data into a spreadsheet, CRM or your own database on a schedule.
- Compare pay ranges where companies publish them (for example Ashby-hosted boards).

### How to use (3 steps)

1. Add companies under **Companies**. Any of these work: `https://boards.greenhouse.io/stripe`, `https://jobs.lever.co/spotify`, `https://jobs.ashbyhq.com/ashby`, or short form `greenhouse:stripe`, `lever:spotify`, `ashby:ashby`.
2. Optional: filter by job title words, location, or remote only.
3. Click **Start**. Download the result as JSON, CSV, Excel or via API.

### Example output

```json
{
  "source": "ashby",
  "company": "ashby",
  "id": "390e266b-4b6c-4490-ad74-05ff5e0bb36a",
  "title": "Product Manager, Onboarding and Growth",
  "department": "Product",
  "team": "Product",
  "location": "Remote - US",
  "allLocations": ["Remote - US", "Remote - Canada"],
  "workplaceType": "Remote",
  "isRemote": true,
  "employmentType": "FullTime",
  "salary": { "min": 180000, "max": 260000, "currency": "USD", "interval": "year", "summary": "$180K - $260K" },
  "publishedAt": "2026-09-11T19:28:18.199+00:00",
  "url": "https://jobs.ashbyhq.com/ashby/390e266b-4b6c-4490-ad74-05ff5e0bb36a",
  "applyUrl": "https://jobs.ashbyhq.com/ashby/390e266b-4b6c-4490-ad74-05ff5e0bb36a/application",
  "scrapedAt": "2026-09-20T18:00:00.000Z"
}
```

Fields the source does not provide are `null` (for example, Greenhouse does not publish salary or team in its public feed).

### Input

| Field | What it does |
|---|---|
| Companies | Career-page URLs or `ats:token` (required). |
| Job title keywords | Keep only jobs whose title contains any of these words. |
| Location contains | Keep only jobs with this text in any of their locations. |
| Remote jobs only | Keep only jobs flagged remote by the company. |
| Include job description | Adds plain-text description (extra charge, off by default). |
| Maximum number of jobs | Hard stop, protects your budget. |

### Pricing

Pay per result: **$3 per 1,000 job listings**. Turning on job descriptions adds **$2 per 1,000 descriptions**. You only pay for jobs that are delivered, and the run stops when your spending limit is reached. Companies that do not exist or have no open jobs cost nothing.

### FAQ

**Do I need a login, an API key or a proxy?** No. It reads the public job-board feeds these platforms provide for career pages.

**Does it contain personal data?** The default output has no personal data. Job descriptions are optional and off by default because some are written in the first person by a named recruiter or hiring manager. If you switch them on, you are responsible for how you use that text.

**Is this legal?** The Actor only reads public career-page feeds and puts no load on them (one request per company). You are responsible for using the data lawfully and in line with the terms of the platforms and the employers involved.

**A company shows 0 jobs.** Check the token: it is the last part of the career-page URL. A wrong token is reported in the run log and costs nothing.

**Which companies are supported?** Any company whose career page runs on Greenhouse, Lever or Ashby. EU-hosted Greenhouse/Lever boards (`eu` in the URL) are not supported yet.

**Something broke.** Open an issue on the Actor page. Reports are answered within one working day.

Only public data. You are responsible for lawful use.

# Actor input Schema

## `boards` (type: `array`):

One entry per company. Paste a career-page URL (https://boards.greenhouse.io/stripe, https://jobs.lever.co/spotify, https://jobs.ashbyhq.com/ashby) or write it as ats:token, for example greenhouse:stripe, lever:spotify, ashby:ashby.

## `titleKeywords` (type: `array`):

Only jobs whose title contains at least one of these words (case-insensitive). Leave empty for all jobs.

## `locationContains` (type: `string`):

Only jobs with this text in the location, for example Amsterdam or Germany.

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

Only jobs flagged as remote by the company (or with 'remote' in the location).

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

Adds the plain-text job description. Charged as a separate event per job. Descriptions can mention recruiters by name, so they are off by default.

## `maxItems` (type: `integer`):

Stops after this many jobs. Protects you from unexpected cost.

## `apiBases` (type: `object`):

Override the API base per source. Leave empty.

## Actor input object example

```json
{
  "boards": [
    "greenhouse:stripe",
    "lever:spotify",
    "ashby:ashby"
  ],
  "remoteOnly": false,
  "includeDescription": false,
  "maxItems": 100,
  "apiBases": {}
}
```

# Actor output Schema

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

All collected job listings (dataset).

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

Per company: status and number of jobs delivered.

# 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 = {
    "boards": [
        "greenhouse:stripe",
        "lever:spotify",
        "ashby:ashby"
    ]
};

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

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

```

## MCP server setup

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