# Greenhouse, Lever & Ashby Job Scraper — Companies' Open Roles (`scrapersdelight/ats-jobs-scraper`) Actor

Scrape every open role from any Greenhouse, Lever, or Ashby job board — title, department, team, location, remote flag, employment type, apply URL, and description. Paste a careers URL; platform auto-detected. Public APIs, no login.

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

## Pricing

from $1.50 / 1,000 per role returneds

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

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

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
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.
Actors are written with capital "A".

## 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.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## 💼 Greenhouse, Lever & Ashby Job Scraper & API — Hiring Data

**Scrape every open role from any Greenhouse, Lever, or Ashby job board — title, department, team, location, remote flag, employment type, and apply URL — in one unified dataset. Paste a careers URL; the platform is auto-detected. No API key, no login.**

> 🕒 Last updated: 2026-07-07 · 🔌 3 ATS platforms, one schema · 🚫 No API key or login · 💵 $1.50 / 1,000 roles · ⚡ Via each ATS's public API

A single **ATS jobs API** across **Greenhouse, Lever, and Ashby** — monitor exactly which companies are hiring, for what, and where. A live hiring-signal / buying-intent feed for recruiting, staffing, sales intelligence, and market research. Export to JSON, CSV, Excel, or Google Sheets, or pull via API.

---

### What it does

- 🔗 **Paste any careers URL** — `jobs.lever.co/spotify`, `boards.greenhouse.io/stripe`, `jobs.ashbyhq.com/ramp` — the platform is detected automatically.
- 🔌 **Three ATS platforms, one schema** — Greenhouse, Lever, and Ashby normalized into the same fields, so you can pool boards from all three.
- 🎯 **Filter as you scrape** — by keyword, department/team, location, or remote-only.
- 📡 **Built for monitoring** — schedule it to catch new roles the day they post (a company opening roles is a timing signal).

### 📊 Output fields

| Field | Description |
|---|---|
| `source` | greenhouse · lever · ashby |
| `company` | board token / company slug |
| `job_id` | stable role ID |
| `title` | role title |
| `department` / `team` | org unit (Lever & Ashby) |
| `location` | city / region / remote label |
| `remote` | remote flag |
| `employment_type` | full-time, contract, … |
| `url` / `apply_url` | public posting + apply links |
| `posted_at` / `updated_at` | timestamps |
| `description` | full plain-text JD (optional) |

<details><summary>💼 Sample role record</summary>

```json
{
  "source": "ashby", "company": "ramp", "job_id": "0907ae2a-…",
  "title": "Staff Software Engineer, iOS", "department": "Engineering", "team": "Growth",
  "location": "New York, NY", "remote": true, "employment_type": "FullTime",
  "url": "https://jobs.ashbyhq.com/ramp/0907ae2a-…",
  "apply_url": "https://jobs.ashbyhq.com/ramp/0907ae2a-…/application",
  "posted_at": "2026-06-11T17:21:26Z"
}
````

</details>

***

### Who it's for

- 🧲 **Sales & GTM teams** — "who's hiring a VP of X" is a buying/timing trigger. Feed it into your outbound (Clay, Make, n8n).
- 🧑‍💼 **Recruiters & staffing** — track target companies' open roles across all three ATSs at once.
- 📊 **Market & talent analysts** — map hiring by company, department, and location over time.
- 🛠️ **Job boards & aggregators** — ingest structured roles straight from the source ATS.

### How to use it

1. Click **Try for free**.
2. Paste one or more **career / job-board URLs** (Greenhouse, Lever, or Ashby).
3. *(Optional)* filter by **keyword**, **department**, **location**, or **remote only**.
4. Click **Start**, then export from the **Dataset** tab, or pull via API.

#### Examples

Every role at three companies across all three ATSs:

```json
{ "boardUrls": ["https://boards.greenhouse.io/stripe", "https://jobs.lever.co/spotify", "https://jobs.ashbyhq.com/ramp"] }
```

Only remote engineering roles:

```json
{ "boardUrls": ["https://boards.greenhouse.io/stripe"], "keyword": "engineer", "remoteOnly": true }
```

Pull via API (run-sync):

```bash
curl -X POST "https://api.apify.com/v2/acts/scrapersdelight~ats-jobs-scraper/run-sync-get-dataset-items?token=YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{ "boardUrls": ["https://jobs.lever.co/spotify"] }'
```

***

### ❓ FAQ

**Do I need an API key or login?** No — it reads each ATS's public job-board API. No account, no key.

**How do I find a company's board URL?** Their careers page: `boards.greenhouse.io/<company>`, `jobs.lever.co/<company>`, or `jobs.ashbyhq.com/<company>`.

**How much does it cost?** $1.50 per 1,000 roles — pay only for results, free to try.

**Can I monitor or schedule new roles?** Yes — schedule the Actor and it re-pulls each board, so you catch new roles as they post.

**Does it return salary?** No — it returns the fields listed above (title, department, location, remote, apply URL, description). Salary is not included.

**Which platforms does it support?** Greenhouse, Lever, and Ashby — the platform is auto-detected from the URL.

### Notes & fair use

This actor reads each ATS's public job-board API. It returns publicly listed roles; it does not access applicant or private data. You are responsible for complying with each site's Terms of Service.

# Actor input Schema

## `boardUrls` (type: `array`):

Paste any Greenhouse, Lever, or Ashby careers URL — the platform is auto-detected. Examples: https://jobs.lever.co/spotify, https://boards.greenhouse.io/stripe, https://jobs.ashbyhq.com/ramp

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

Optional. Explicit boards as objects: \[{ "source": "greenhouse", "token": "stripe" }]. source = greenhouse | lever | ashby.

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

Only keep roles whose title contains this (e.g. "engineer", "sales", "marketing").

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

Only keep roles in a matching department or team.

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

Only keep roles whose location contains this (e.g. "New York", "London", "remote").

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

Only keep roles flagged remote.

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

Fetch the full plain-text job description for each role (larger output, slightly slower on Greenhouse).

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

Cap on roles returned this run. 0 = every open role across the boards.

## `proxyConfiguration` (type: `object`):

Proxy settings. These are public APIs — datacenter proxy is plenty.

## `requestConcurrency` (type: `integer`):

Max boards fetched in parallel.

## Actor input object example

```json
{
  "boardUrls": [
    "https://boards.greenhouse.io/stripe"
  ],
  "remoteOnly": false,
  "includeDescription": false,
  "maxItems": 0,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5
}
```

# Actor output Schema

## `roles` (type: `string`):

The dataset of scraped roles (one item per open role).

# 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 = {
    "boardUrls": [
        "https://boards.greenhouse.io/stripe"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("scrapersdelight/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 = { "boardUrls": ["https://boards.greenhouse.io/stripe"] }

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

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

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

```

## CLI example

```bash
echo '{
  "boardUrls": [
    "https://boards.greenhouse.io/stripe"
  ]
}' |
apify call scrapersdelight/ats-jobs-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=scrapersdelight/ats-jobs-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Greenhouse, Lever & Ashby Job Scraper — Companies' Open Roles",
        "description": "Scrape every open role from any Greenhouse, Lever, or Ashby job board — title, department, team, location, remote flag, employment type, apply URL, and description. Paste a careers URL; platform auto-detected. Public APIs, no login.",
        "version": "0.1",
        "x-build-id": "V4FK42AN7XlyRzIGk"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/scrapersdelight~ats-jobs-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-scrapersdelight-ats-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/scrapersdelight~ats-jobs-scraper/runs": {
            "post": {
                "operationId": "runs-sync-scrapersdelight-ats-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/scrapersdelight~ats-jobs-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-scrapersdelight-ats-jobs-scraper",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "properties": {
                    "boardUrls": {
                        "title": "Career / job-board URLs",
                        "type": "array",
                        "description": "Paste any Greenhouse, Lever, or Ashby careers URL — the platform is auto-detected. Examples: https://jobs.lever.co/spotify, https://boards.greenhouse.io/stripe, https://jobs.ashbyhq.com/ramp",
                        "items": {
                            "type": "string"
                        }
                    },
                    "companies": {
                        "title": "Companies (advanced)",
                        "type": "array",
                        "description": "Optional. Explicit boards as objects: [{ \"source\": \"greenhouse\", \"token\": \"stripe\" }]. source = greenhouse | lever | ashby."
                    },
                    "keyword": {
                        "title": "Keyword",
                        "type": "string",
                        "description": "Only keep roles whose title contains this (e.g. \"engineer\", \"sales\", \"marketing\")."
                    },
                    "department": {
                        "title": "Department / team",
                        "type": "string",
                        "description": "Only keep roles in a matching department or team."
                    },
                    "location": {
                        "title": "Location",
                        "type": "string",
                        "description": "Only keep roles whose location contains this (e.g. \"New York\", \"London\", \"remote\")."
                    },
                    "remoteOnly": {
                        "title": "Remote only",
                        "type": "boolean",
                        "description": "Only keep roles flagged remote.",
                        "default": false
                    },
                    "includeDescription": {
                        "title": "Include full job description",
                        "type": "boolean",
                        "description": "Fetch the full plain-text job description for each role (larger output, slightly slower on Greenhouse).",
                        "default": false
                    },
                    "maxItems": {
                        "title": "Max roles",
                        "minimum": 0,
                        "type": "integer",
                        "description": "Cap on roles returned this run. 0 = every open role across the boards.",
                        "default": 0
                    },
                    "proxyConfiguration": {
                        "title": "Proxy",
                        "type": "object",
                        "description": "Proxy settings. These are public APIs — datacenter proxy is plenty.",
                        "default": {
                            "useApifyProxy": true
                        }
                    },
                    "requestConcurrency": {
                        "title": "Request concurrency",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "Max boards fetched in parallel.",
                        "default": 5
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
