# ATS Job Postings Scraper (Greenhouse, Lever, Ashby, Workable) (`pattonholdings/ats-job-postings-scraper`) Actor

Scrape job postings from company career boards on Greenhouse, Lever, Ashby, Workable. Input: company slugs or careers URLs (auto-detected). Output: normalized JSON per job - title, department, location, remote flag, salary, apply URL, description. Use for hiring signals, lead-gen, recruiting.

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

## Pricing

$1.00 / 1,000 job posting scrapeds

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/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
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.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — 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

## ATS Job Postings Scraper — Greenhouse, Lever, Ashby, Workable

Scrape live job postings from any company's career board hosted on the four major ATS platforms. Give it company slugs or careers-page URLs; get back one normalized JSON row per job.

### Why this Actor

Company careers pages on Greenhouse, Lever, Ashby, and Workable are backed by public JSON APIs — the same ones their own job boards call. This Actor speaks all four, auto-detects the platform, and normalizes the output into a single schema. No browser, no proxies, no flakiness.

### Use cases

- **Sales prospecting / lead-gen** — companies hiring for a role are budget-active buyers of tools in that category. Track hiring signals across your target-account list.
- **Recruiting intelligence** — monitor competitor hiring by department, location, seniority.
- **Job boards & aggregators** — ingest normalized postings from thousands of boards.
- **Market research** — salary transparency data (Ashby compensation tiers included when published), remote-work trends, tech-stack signals from job descriptions.
- **Job seekers** — track dream-company boards daily with a scheduled run + filter.

### Input

```json
{
  "companies": [
    "https://boards.greenhouse.io/stripe",
    "https://jobs.lever.co/spotify",
    "https://jobs.ashbyhq.com/openai",
    "https://apply.workable.com/blueground",
    "netflix"
  ],
  "titleFilter": "engineer",
  "locationFilter": "remote",
  "remoteOnly": false,
  "includeDescription": true
}
```

- **companies** — URLs or bare slugs (bare slugs are tried against all four platforms). Max 500 per run.
- **titleFilter / locationFilter** — case-insensitive substring filters.
- **remoteOnly** — only jobs flagged remote.
- **includeDescription** — set false for lighter datasets.

### Output (one row per job)

```json
{
  "company": "stripe",
  "platform": "greenhouse",
  "title": "Backend Engineer, Payments",
  "department": "Engineering",
  "location": "Toronto, Canada",
  "isRemote": false,
  "employmentType": "Full-time",
  "compensation": "$150K – $210K",
  "url": "https://boards.greenhouse.io/stripe/jobs/123456",
  "publishedAt": "2026-06-28T14:02:11Z",
  "description": "Stripe is looking for...",
  "scrapedAt": "2026-07-05T09:00:00.000Z"
}
```

Boards that can't be found return a single `type: "error"` row naming the input, so batch runs never fail silently.

### Scheduling

Pair with Apify Schedules for daily monitoring. Combine `companies` list + `titleFilter` and export to Google Sheets / webhook for a zero-maintenance hiring-signals pipeline.

### Pricing

Pay-per-result: **$0.001 per job posting** ($1 per 1,000 jobs). A 50-company batch typically returns 1,000-5,000 postings in under 2 minutes.

### Fair use

This Actor reads only officially public job-board APIs intended for embedding. It sends no credentials, bypasses no auth, and respects each platform's public data surface.

### Author

Built by [Peak Post](https://peakpost.ca) — also maintainer of the 13-Actor Website Audit Suite (security headers, Core Web Vitals, WCAG, structured data, and more).

# Actor input Schema

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

Company career boards to scrape. Accepts full URLs (https://boards.greenhouse.io/stripe, https://jobs.lever.co/spotify, https://jobs.ashbyhq.com/openai, https://apply.workable.com/blueground) or bare slugs (platform auto-detected). Max 500.

## `titleFilter` (type: `string`):

Only include jobs whose title contains this text (case-insensitive), e.g. "engineer".

## `locationFilter` (type: `string`):

Only include jobs whose location contains this text (case-insensitive), e.g. "Toronto" or "Remote".

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

Only include jobs flagged as remote.

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

Include the plain-text job description (up to 5000 chars) in each result. Disable for smaller datasets.

## Actor input object example

```json
{
  "companies": [
    "https://boards.greenhouse.io/stripe"
  ],
  "remoteOnly": false,
  "includeDescription": true
}
```

# 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"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("pattonholdings/ats-job-postings-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"] }

# Run the Actor and wait for it to finish
run = client.actor("pattonholdings/ats-job-postings-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 '{
  "companies": [
    "https://boards.greenhouse.io/stripe"
  ]
}' |
apify call pattonholdings/ats-job-postings-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

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