# Greenhouse Lever Ashby Jobs API (`technicaldost/ats-jobs-scraper`) Actor

Scrape job postings from 5 public ATS APIs: Greenhouse, Lever, Ashby, Workable and SmartRecruiters. Returns title, location, URL, postedAt and description. Pay per job.

- **URL**: https://apify.com/technicaldost/ats-jobs-scraper.md
- **Developed by:** [Technical Dost Solutions](https://apify.com/technicaldost) (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 $5.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/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

## Company Jobs Scraper (Greenhouse, Lever, Ashby, Workable, SmartRecruiters)

Turn company names into a clean feed of current job openings. This Apify Actor reads public, official Greenhouse, Lever, Ashby, Workable, and SmartRecruiters job-board APIs, detects the ATS used by each company, and saves every opening in one normalized format.

No API key, paid proxy, or paid data source is required. A missing board or failed company is logged and skipped without stopping the rest of the run.

### Use cases

- Track hiring signals across target accounts.
- Build recruiting, sourcing, and job-alert workflows.
- Create lead lists from companies actively hiring specific teams.
- Replace five ATS integrations with one stable output schema.

### Input

| Field | Type | Default | Description |
| --- | --- | --- | --- |
| `companies` | string array | sample list | Required company slugs or board tokens. |
| `ats` | string | `"auto"` | `auto`, `greenhouse`, `lever`, `ashby`, `workable`, or `smartrecruiters`. Auto tries each source until one returns jobs. |
| `maxJobsPerCompany` | integer | `100` | Maximum jobs saved per company, from 1 to 500. |

Example:

```json
{
  "companies": ["stripe", "figma", "notion", "clear-labs", "visa"],
  "ats": "auto",
  "maxJobsPerCompany": 100
}
```

Use the ATS board token, which can differ from the company's normal website slug. Examples that currently resolve: `stripe` (Greenhouse), `notion` (Ashby), `palantir` (Lever), `clear-labs` (Workable), `visa` (SmartRecruiters).

### Output

Each dataset item contains:

- `company` — input company slug or board token
- `ats` — detected provider: `greenhouse`, `lever`, `ashby`, `workable`, or `smartrecruiters`
- `jobId` — provider job identifier
- `title` — job title
- `location` — source-provided location
- `department` — department when available
- `team` — team when available
- `employmentType` — employment type or commitment when available
- `url` — public job URL
- `postedAt` — ISO 8601 source timestamp, or `null`
- `salary` — source-provided compensation summary, or `null`
- `descriptionText` — plain-text description truncated to 800 characters

Example output:

```json
{
  "company": "stripe",
  "ats": "greenhouse",
  "jobId": "8023928",
  "title": "Account Executive, Bridge",
  "location": "London",
  "department": "Revenue",
  "team": "",
  "employmentType": "",
  "url": "https://stripe.com/jobs/listing/account-executive-bridge/8023928",
  "postedAt": "2026-07-17T08:30:00.000Z",
  "salary": null,
  "descriptionText": "Partner with customers to grow their business on Stripe..."
}
```

The run log ends with a `SUMMARY` showing the detected ATS and saved job count for every requested company.

### Run locally

Use Node.js 20 or newer. Save input to `storage/key_value_stores/default/INPUT.json`, then run:

```bash
npm install
node src/main.js
```

Results are written to `storage/datasets/default/`.

### Free public sources

- Greenhouse Job Board API: `https://boards-api.greenhouse.io/v1/boards/<slug>/jobs?content=true`
- Lever Postings API: `https://api.lever.co/v0/postings/<slug>?mode=json`
- Ashby Job Board API: `https://api.ashbyhq.com/posting-api/job-board/<slug>?includeCompensation=true`
- Workable Widget API: `https://apply.workable.com/api/v1/widget/accounts/<slug>?details=true`
- SmartRecruiters Postings API: `https://api.smartrecruiters.com/v1/companies/<slug>/postings`

The Actor uses request timeouts, two retries with backoff, and a five-company concurrency cap. Review each provider's and company's current terms before redistributing data.

# Actor input Schema

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

Company slugs or board tokens, for example stripe, figma, notion, clear-labs, or visa.

## `ats` (type: `string`):

Choose a provider, or let the Actor detect the first provider that returns jobs.

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

Maximum number of open jobs saved for each company.

## Actor input object example

```json
{
  "companies": [
    "stripe",
    "figma",
    "notion",
    "clear-labs",
    "visa"
  ],
  "ats": "auto",
  "maxJobsPerCompany": 100
}
```

# 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",
        "figma",
        "notion",
        "clear-labs",
        "visa"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("technicaldost/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",
        "figma",
        "notion",
        "clear-labs",
        "visa",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("technicaldost/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",
    "figma",
    "notion",
    "clear-labs",
    "visa"
  ]
}' |
apify call technicaldost/ats-jobs-scraper --silent --output-dataset

```

## MCP server setup

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