# 🧰 ATS Hiring & Closure Delta Feed — Greenhouse, Lever, Ashby (`nexgenwatch/public-ats-hiring-closure-delta-feed`) Actor

Public ATS hiring & closure delta feed across six providers — opened/changed/closed/reopened deltas with confirmed closures, honest terminals, watch mode.

- **URL**: https://apify.com/nexgenwatch/public-ats-hiring-closure-delta-feed.md
- **Developed by:** [NexGen Watch](https://apify.com/nexgenwatch) (community)
- **Categories:** Business, Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $6.70 / 1,000 job deltas

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

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

## Public ATS Hiring & Closure Delta Feed

Collect normalized public jobs from six company ATS boards and turn scheduled checks into confirmed openings, changes, closures, and reopenings.

### 1. What it does

Read buyer-selected public Greenhouse, Lever, Ashby, Recruitee, SmartRecruiters, and Personio boards into one schema. Snapshot mode returns current records. Watch mode seeds a private baseline and returns confirmed later deltas. Receipts separate complete, empty, partial, and blocked checks.

### 2. Input

A list of `targets`, each a `provider` plus its public `boardId` (Greenhouse token, Lever site, Ashby job-board name, Recruitee subdomain, SmartRecruiters company id, Personio account). Options: `watchMode`, `closureConfirmations`, `baselineId`, `maxItems`, `filters` (`titleInclude`, `remoteOnly`), `includeDescriptions`, `includeCompensation`, `includeRaw`, `maxConcurrency`. No arbitrary URLs are accepted.

Example input:

```json
{"targets":[{"provider":"greenhouse","boardId":"greenhouse","companyName":"Greenhouse"},{"provider":"lever","boardId":"leverdemo","region":"global","companyName":"Lever Demo"},{"provider":"ashby","boardId":"Ashby","companyName":"Ashby"}],"watchMode":false,"maxItems":250,"filters":{"titleInclude":["engineer","product"],"remoteOnly":false},"includeDescriptions":true,"includeCompensation":true,"includeRaw":false,"maxConcurrency":3}
```

### 3. Output and sample

Three record types: `job_record` (normalized posting with `content_hash`), `job_delta` (opened/changed/closed/reopened with `changed_fields`), and `source_receipt` (per-target terminal: NORMAL / GENUINE\_EMPTY / PARTIAL / BLOCKED). Every item carries `source_url` and `observed_at`.

### 4. Pricing

Pay-per-event: actor start, job record, job delta, and watch source check. Amounts are configured at publish. `source_receipt` items are always returned and never billed.

### 5. Watch mode

The first watch run seeds a private baseline and emits zero deltas. Later scheduled runs emit only confirmed changes. A job is closed only after it is absent for `closureConfirmations` consecutive eligible runs; partial or blocked checks never close a job. Same job = exact composite key; no fuzzy or cross-provider matching.

### 6. API, CLI, and MCP

Runs on the Apify platform via API, CLI, schedules, and MCP like any Actor. Watch state persists in a named key-value store; each run is independent and stateless over that store.

### 7. Use with:

Agencies maintaining public requisition histories; workforce vendors updating account workflows; investors and researchers preserving public hiring records; data teams replacing six adapters with one scheduled feed.

### 8. FAQ

Buyer supplies the boards. Postings do not prove headcount, hiring, or performance; a removal means a public-board closure, not a hire. Fields may be null when the source omits them. SmartRecruiters stops if anonymous access fails. Outages, objections, and shape drift are reported loudly, never as a silent empty.

### 9. Compliance

Public logged-out sources only; no wall-defeating; no CAPTCHA/login/paywall workarounds; no candidate data; comply on objection. No login, private/licensed data, rental pricing, or always-on process. Buyers are responsible for lawful use and source terms.

### Pricing

| Event | FREE | BRONZE | SILVER | GOLD+ |
|---|---|---|---|---|
| Actor Start (`actor-start`) | $0.02 | $0.02 | $0.02 | $0.02 |
| Job record (`job-record`) | $0.003 | $0.0027 | $0.0024 | $0.00201 |
| Job delta (`job-delta`) | $0.01 | $0.009 | $0.008 | $0.0067 |
| Source check (`source-check`) | $0.10 | $0.09 | $0.08 | $0.067 |

Prices are the filed pay-per-event amounts per plan tier (PLATINUM/DIAMOND match GOLD). Blocked and refused runs do not intentionally charge value events.

# Actor input Schema

## `targets` (type: `array`):

Buyer-selected public ATS boards to read. Each is a provider plus its public board identifier; no arbitrary URLs.

## `watchMode` (type: `boolean`):

Seed a private baseline and emit only confirmed later deltas (opened/changed/closed/reopened). First run emits zero deltas.

## `closureConfirmations` (type: `integer`):

Consecutive eligible runs a job must be absent before it is confirmed closed.

## `baselineId` (type: `string`):

Named watch baseline. Changing the canonical input derives a new baseline.

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

Maximum job records to emit this run.

## `filters` (type: `object`):

Post-normalization filters. Do not change what is fetched, only what is emitted.

## `includeDescriptions` (type: `boolean`):

Include sanitized description\_html and description\_plain.

## `includeCompensation` (type: `boolean`):

Request compensation fields where the provider exposes them publicly.

## `includeRaw` (type: `boolean`):

Attach the raw provider payload (bounded).

## `maxConcurrency` (type: `integer`):

Global concurrent requests.

## Actor input object example

```json
{
  "targets": [
    {
      "provider": "greenhouse",
      "boardId": "stripe",
      "companyName": "Stripe"
    },
    {
      "provider": "ashby",
      "boardId": "openai",
      "companyName": "OpenAI"
    }
  ],
  "watchMode": false,
  "closureConfirmations": 2,
  "maxItems": 50,
  "includeDescriptions": true,
  "includeCompensation": true,
  "includeRaw": false,
  "maxConcurrency": 6
}
```

# Actor output Schema

## `results` (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 = {
    "targets": [
        {
            "provider": "greenhouse",
            "boardId": "stripe",
            "companyName": "Stripe"
        },
        {
            "provider": "ashby",
            "boardId": "openai",
            "companyName": "OpenAI"
        }
    ],
    "watchMode": false,
    "maxItems": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("nexgenwatch/public-ats-hiring-closure-delta-feed").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 = {
    "targets": [
        {
            "provider": "greenhouse",
            "boardId": "stripe",
            "companyName": "Stripe",
        },
        {
            "provider": "ashby",
            "boardId": "openai",
            "companyName": "OpenAI",
        },
    ],
    "watchMode": False,
    "maxItems": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("nexgenwatch/public-ats-hiring-closure-delta-feed").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 '{
  "targets": [
    {
      "provider": "greenhouse",
      "boardId": "stripe",
      "companyName": "Stripe"
    },
    {
      "provider": "ashby",
      "boardId": "openai",
      "companyName": "OpenAI"
    }
  ],
  "watchMode": false,
  "maxItems": 50
}' |
apify call nexgenwatch/public-ats-hiring-closure-delta-feed --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=nexgenwatch/public-ats-hiring-closure-delta-feed",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

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