# Multi-ATS Jobs Search Scraper (`jobsapi/multi-ats-jobs-search-scraper`) Actor

Scrape ATS career pages, with rich structured Greenhouse output including full descriptions, departments, offices, metadata, salary ranges, dates, compliance details, and complete source data.

- **URL**: https://apify.com/jobsapi/multi-ats-jobs-search-scraper.md
- **Developed by:** [Jobs API](https://apify.com/jobsapi) (community)
- **Categories:** Jobs, Automation, Developer tools
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.99 / 1,000 job details

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/actors/running/actors-in-store.md#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

## Multi-ATS Jobs Search Scraper

This Actor collects public ATS job postings. The verified default path is Greenhouse: a Greenhouse board URL is resolved to the official boards-api.greenhouse.io JSON endpoint with content=true, then normalized into complete rich job records. The repository also retains platform-specific legacy handlers for other ATS selections.

### Greenhouse input

The default local input searches the public Fivetran Greenhouse board:

```
{
  "atsPlatform": "auto",
  "mode": "search",
  "companyUrl": "https://boards.greenhouse.io/fivetran",
  "searchQuery": "engineer",
  "maxItems": 3,
  "maxRequests": 1,
  "requestTimeoutMs": 15000,
  "deadlineMs": 60000,
  "maxRetries": 1
}
```

Search filters every word in searchQuery against the published title, company, location, departments, and offices. Greenhouse single and multiple modes select exact job IDs or exact public job URLs from the same official board response. maxItems, maxRequests, requestTimeoutMs, deadlineMs, and maxRetries keep the direct path bounded. includeDescription=false removes description content after complete-record validation.

### Output

Greenhouse rows contain source-backed identity, employer, locations, departments, offices, metadata, employee type, sanitized description text and HTML, headings, sections, list items, salary ranges, dates, compliance fields, canonical job URL, source API URL, request receipts, field coverage, and quality metrics. The source payload is retained as sourceData and sourceRecord after contact-field redaction. applyUrl is emitted only when Greenhouse publishes a distinct application URL; the job page is never mislabeled as an application URL.

Run evidence is written to the default key-value store:

- RUN\_SUMMARY
- RUN\_DIAGNOSTICS
- RUN\_REQUESTS
- RUN\_HEALTH
- RUN\_METADATA

### Local QA

```
npm ci --ignore-scripts --no-audit --no-fund
npm run check
npm test
npm run lint
npm run validate
npx --yes apify-cli validate-schema .actor/input_schema.json
npx --yes apify-cli run --purge --input-file INPUT.json
```

The verified Greenhouse path uses native HTTPS and Cheerio; it does not use a browser, proxy, mirror, login, CAPTCHA solver, or stealth bypass. It runs locally and on the Apify platform. Optional platform handlers remain bounded legacy fallbacks and are not claimed as live-verified by the default Greenhouse QA run.

### Cost and responsible use

`maxItems`, `maxRequests`, per-request timeouts, retries, and a run deadline bound source traffic and compute use. Start with the defaults and increase limits only when necessary. Scrape public job data responsibly, respect applicable site terms and laws, and do not use the Actor to collect private or access-controlled data.

# Actor input Schema

## `mode` (type: `string`):

Search a board or select one or more exact public Greenhouse jobs.

## `atsPlatform` (type: `string`):

Set to auto to detect the configured ATS URL.

## `companyUrl` (type: `string`):

Absolute public career or Greenhouse board URL, for example https://boards.greenhouse.io/example.

## `boardToken` (type: `string`):

Optional Greenhouse board token when the company URL is a public detail URL.

## `jobId` (type: `string`):

Optional exact Greenhouse job ID for single mode.

## `jobUrl` (type: `string`):

Optional exact public Greenhouse job URL for single mode.

## `jobIds` (type: `array`):

Exact Greenhouse job IDs for multiple mode.

## `jobUrls` (type: `array`):

Exact public Greenhouse job URLs for multiple mode.

## `searchQuery` (type: `string`):

Optional all-word filter matched against title, company, location, department, and office.

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

Maximum complete job records written.

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

Keep sanitized description text, HTML, headings, sections, and list items.

## `maxRequests` (type: `integer`):

Bound on direct source requests for this run.

## `requestTimeoutMs` (type: `integer`):

Timeout for the direct source request.

## `deadlineMs` (type: `integer`):

Hard upper bound for the direct path.

## `maxRetries` (type: `integer`):

Bounded retries for transient failures.

## `fixtureFile` (type: `string`):

Optional local JSON fixture for parser and run tests.

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

Ignored by the local direct Greenhouse path; no proxy is required.

## Actor input object example

```json
{
  "mode": "search",
  "atsPlatform": "auto",
  "boardToken": "",
  "jobId": "",
  "jobUrl": "",
  "jobIds": [],
  "jobUrls": [],
  "searchQuery": "",
  "maxItems": 3,
  "includeDescription": true,
  "maxRequests": 1,
  "requestTimeoutMs": 15000,
  "deadlineMs": 120000,
  "maxRetries": 1,
  "fixtureFile": ""
}
```

# Actor output Schema

## `dataset` (type: `string`):

No description

## `runSummary` (type: `string`):

No description

## `runDiagnostics` (type: `string`):

No description

## `runHealth` (type: `string`):

No description

## `runRequests` (type: `string`):

No description

## `runMetadata` (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 = {};

// Run the Actor and wait for it to finish
const run = await client.actor("jobsapi/multi-ats-jobs-search-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 = {}

# Run the Actor and wait for it to finish
run = client.actor("jobsapi/multi-ats-jobs-search-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 '{}' |
apify call jobsapi/multi-ats-jobs-search-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,jobsapi/multi-ats-jobs-search-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/g0mO3pS1a6prSuaqv/builds/hl4EaWfIWtqrhoWox/openapi.json
