# ATS Hiring-Intent Lead Finder (`ayeeyee/ats-hiring-intent-lead-finder`) Actor

Turn a company list into hiring-intent sales/recruiting leads from official keyless ATS APIs (Greenhouse, Lever, Ashby) + verified contact enrichment. Per-successful-result pricing.

- **URL**: https://apify.com/ayeeyee/ats-hiring-intent-lead-finder.md
- **Developed by:** [Virtual Footprint LLC](https://apify.com/ayeeyee) (community)
- **Categories:** Lead generation, Jobs
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $8.00 / 1,000 hiring-intent leads

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 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/docs.md):

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

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python/docs.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/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

## ATS Hiring-Intent Lead Finder 📈

**Turn a list of companies into ranked, hiring-intent sales & recruiting leads.**

For each company you provide, this Actor pulls the **current open roles** straight
from the company's **official, keyless public ATS API** — Greenhouse, Lever, or
Ashby — then computes a **hiring-intent score** and plain-English **buying signals**
from the role mix (e.g. *"79 Sales roles open — active GTM / revenue expansion"*).
Add a `domain` and it also enriches the hiring company with **verified business
contacts** (MX/DNS-validated emails, phones, socials, tech stack) so each result is
a ready-to-use lead.

- ✅ **No API keys, no login, no residential proxy** — these are the ATS platforms' own public JSON endpoints, so there's no anti-bot fight and no upstream scraping cost.
- ✅ **Three ATS providers**, auto-detected: Greenhouse, Lever, Ashby.
- ✅ **Hiring-intent scoring (0–100 + A–D grade)** with human-readable buying signals.
- ✅ **Optional verified-contact enrichment** of the hiring company (reuses our verified-email engine).
- ✅ **Clean, normalized, deduped output.** Charged **per successful company** (one that actually returns open roles).

---

### What you give it

A `companies` array. Each item can be any of:

| Form | Example |
|---|---|
| `provider:slug` string | `"lever:spotify"`, `"ashby:ramp"` |
| Careers-board URL | `"https://jobs.lever.co/spotify"` |
| Bare slug (all providers tried) | `"stripe"` |
| Object (recommended — enables contact enrichment) | `{"provider":"greenhouse","slug":"stripe","domain":"stripe.com"}` |

**Finding a company's ATS slug:** it's in their careers-page URL — e.g.
`boards.greenhouse.io/`**`stripe`**, `jobs.lever.co/`**`spotify`**,
`jobs.ashbyhq.com/`**`ramp`**.

#### Optional inputs
- `functionFilter` — only return roles in these functions (e.g. `["Sales","Marketing"]`).
- `enrichContacts` (default `true`) — fetch verified contacts when a `domain` is given.
- `verifyEmails` (default `true`) — MX/DNS-validate the best email.
- `concurrency` (1–10, default 5).

---

### Real-run sample (verified live, 2026-07-10)

Input:
```json
{ "companies": [
  { "provider": "greenhouse", "slug": "stripe", "domain": "stripe.com" }
] }
````

Output (one record per company):

```json
{
  "company": "stripe",
  "atsProvider": "greenhouse",
  "domain": "stripe.com",
  "totalOpenRoles": 509,
  "openRolesByFunction": {
    "Engineering": 118, "Sales": 79, "Data/AI": 18,
    "Marketing": 37, "Customer Success": 44, "Other": 96, "...": "..."
  },
  "hiringIntentScore": 100,
  "hiringIntentGrade": "A",
  "signals": [
    "79 Sales roles open — active GTM / revenue expansion",
    "37 Marketing roles open — demand-gen investment",
    "136 Engineering/Data roles open — scaling product & headcount",
    "509 total openings — high-growth / well-funded signal"
  ],
  "leadGrade": "A",
  "contacts": {
    "emails": ["press@stripe.com"],
    "emailVerified": true,
    "phones": [],
    "socials": { "twitter": "https://twitter.com/stripe", "linkedin": "https://linkedin.com/company/stripe" },
    "techStack": ["Cloudflare", "React", "Google Analytics"]
  },
  "openRoles": [
    { "provider": "greenhouse", "companySlug": "stripe", "jobId": "7954688",
      "title": "Account Executive, AI Sales (Grower)", "department": "Sales",
      "function": "Sales", "location": "San Francisco, CA", "remote": false,
      "url": "https://stripe.com/jobs/search?gh_jid=7954688",
      "updatedAt": "2026-06-26T17:05:44-04:00" }
  ]
}
```

> The `contacts` block is illustrative of the enrichment shape; exact values depend
> on what each company publishes on its own site at run time. The ATS role data
> (counts, titles, functions, signals) is pulled live from the official board.

**Also verified live the same day:** `lever:spotify` → 103 open roles, intent A;
`ashby:ramp` → 126 open roles, intent A. All three providers returned clean,
non-empty data.

***

### Output schema (per company)

| Field | Type | Meaning |
|---|---|---|
| `company` | string | ATS slug you supplied |
| `atsProvider` | string | `greenhouse` | `lever` | `ashby` (auto-detected) |
| `domain` | string | null | domain you supplied (for enrichment) |
| `totalOpenRoles` | int | number of currently open, listed roles |
| `openRolesByFunction` | object | role counts by business function |
| `hiringIntentScore` | int (0–100) | volume + weighted GTM/eng expansion signals |
| `hiringIntentGrade` | `A`–`D` | banded intent |
| `signals` | string\[] | plain-English buying signals |
| `contacts` | object | null | verified emails, phones, socials, tech stack |
| `leadGrade` | `A`–`D` | intent blended with contact reachability |
| `openRoles` | object\[] | normalized roles (title, department, function, location, remote, url, updatedAt) |

Only companies that return **at least one open role** are pushed and billed.

***

### Pricing

**Pay per result** — you're charged only for companies that actually return hiring data.

| Event | Price | When |
|---|---|---|
| Hiring-Intent Lead (primary) | **$0.008** | once per company with ≥1 open role + intent score |
| Contact-Enriched Lead | $0.004 | when the company is also enriched with ≥1 verified email |
| Actor start | $0.0001 | one-time per run |

No upstream scraping/compose cost — direct calls to official public ATS APIs, so
the primary event sits comfortably above per-run compute.

***

### Why this beats the alternatives

Existing "multi-ATS job scraper" actors are tiny and unrated, and they stop at a raw
job feed. This Actor is the only one that **turns those postings into a scored,
contact-enriched lead** — hiring-intent signals + verified contacts of the hiring
company, clean and deduped, at one transparent per-success price. MCP-ready for
agent workflows ("who's hiring for Sales right now, with a way to reach them").

### Troubleshooting

| Symptom | Cause / fix |
|---|---|
| `No open roles found for X` | Wrong slug or the company isn't on that ATS. Check their careers URL for the exact slug, or pass `provider:slug`. Some companies migrate between ATS platforms. |
| Empty `contacts` | No `domain` supplied, or the site blocked a plain fetch. Contacts are best-effort and never block the lead. |
| Fewer roles than the careers page shows | We return **listed, public** roles only (Ashby `isListed`, Lever public postings). |
| Lever returns "Document not found" | That company isn't on Lever (or changed slug); try a bare slug to auto-detect the provider. |

### Data source & compliance

Data comes exclusively from the ATS providers' **own official public job-board APIs**
(Greenhouse `boards-api`, Lever `postings` API, Ashby `posting-api`) — the same
endpoints that power the companies' public careers pages. No login, no scraping of
gated content.

# Actor input Schema

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

Each item can be: a bare ATS slug ('stripe'), a 'provider:slug' ('lever:spotify', 'ashby:ramp'), a careers-board URL ('https://jobs.lever.co/spotify'), or an object {"provider":"greenhouse","slug":"stripe","domain":"stripe.com"}. Include a 'domain' to also get verified contacts for that company.

## `functionFilter` (type: `array`):

Only return roles matching these business functions/keywords (e.g. 'Sales', 'Engineering', 'Marketing'). Leave empty for all roles.

## `enrichContacts` (type: `boolean`):

When a company includes a 'domain', fetch its own public site for verified emails, phones, socials, and tech stack. Adds ~2s per company.

## `verifyEmails` (type: `boolean`):

Validate the best email's domain against live MX/DNS records.

## `concurrency` (type: `integer`):

How many companies to process in parallel (1–10).

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

Optional. ATS endpoints are public APIs, so a proxy is usually NOT needed. Use a datacenter proxy only if you hit rate limits.

## Actor input object example

```json
{
  "companies": [
    {
      "provider": "greenhouse",
      "slug": "stripe",
      "domain": "stripe.com"
    },
    "lever:spotify",
    {
      "provider": "ashby",
      "slug": "ramp",
      "domain": "ramp.com"
    }
  ],
  "functionFilter": [
    "Sales",
    "Marketing"
  ],
  "enrichContacts": true,
  "verifyEmails": true,
  "concurrency": 5,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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 = {
    "companies": [
        {
            "provider": "greenhouse",
            "slug": "stripe",
            "domain": "stripe.com"
        },
        "lever:spotify",
        {
            "provider": "ashby",
            "slug": "ramp",
            "domain": "ramp.com"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("ayeeyee/ats-hiring-intent-lead-finder").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": [
        {
            "provider": "greenhouse",
            "slug": "stripe",
            "domain": "stripe.com",
        },
        "lever:spotify",
        {
            "provider": "ashby",
            "slug": "ramp",
            "domain": "ramp.com",
        },
    ] }

# Run the Actor and wait for it to finish
run = client.actor("ayeeyee/ats-hiring-intent-lead-finder").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": [
    {
      "provider": "greenhouse",
      "slug": "stripe",
      "domain": "stripe.com"
    },
    "lever:spotify",
    {
      "provider": "ashby",
      "slug": "ramp",
      "domain": "ramp.com"
    }
  ]
}' |
apify call ayeeyee/ats-hiring-intent-lead-finder --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=ayeeyee/ats-hiring-intent-lead-finder",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "ATS Hiring-Intent Lead Finder",
        "description": "Turn a company list into hiring-intent sales/recruiting leads from official keyless ATS APIs (Greenhouse, Lever, Ashby) + verified contact enrichment. Per-successful-result pricing.",
        "version": "1.1",
        "x-build-id": "grVWaYMrE3r1TK2hw"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/ayeeyee~ats-hiring-intent-lead-finder/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-ayeeyee-ats-hiring-intent-lead-finder",
                "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/ayeeyee~ats-hiring-intent-lead-finder/runs": {
            "post": {
                "operationId": "runs-sync-ayeeyee-ats-hiring-intent-lead-finder",
                "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/ayeeyee~ats-hiring-intent-lead-finder/run-sync": {
            "post": {
                "operationId": "run-sync-ayeeyee-ats-hiring-intent-lead-finder",
                "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",
                "required": [
                    "companies"
                ],
                "properties": {
                    "companies": {
                        "title": "Companies",
                        "type": "array",
                        "description": "Each item can be: a bare ATS slug ('stripe'), a 'provider:slug' ('lever:spotify', 'ashby:ramp'), a careers-board URL ('https://jobs.lever.co/spotify'), or an object {\"provider\":\"greenhouse\",\"slug\":\"stripe\",\"domain\":\"stripe.com\"}. Include a 'domain' to also get verified contacts for that company."
                    },
                    "functionFilter": {
                        "title": "Function filter (optional)",
                        "type": "array",
                        "description": "Only return roles matching these business functions/keywords (e.g. 'Sales', 'Engineering', 'Marketing'). Leave empty for all roles.",
                        "items": {
                            "type": "string"
                        }
                    },
                    "enrichContacts": {
                        "title": "Enrich hiring company contacts",
                        "type": "boolean",
                        "description": "When a company includes a 'domain', fetch its own public site for verified emails, phones, socials, and tech stack. Adds ~2s per company.",
                        "default": true
                    },
                    "verifyEmails": {
                        "title": "Verify emails (MX/DNS)",
                        "type": "boolean",
                        "description": "Validate the best email's domain against live MX/DNS records.",
                        "default": true
                    },
                    "concurrency": {
                        "title": "Concurrency",
                        "minimum": 1,
                        "maximum": 10,
                        "type": "integer",
                        "description": "How many companies to process in parallel (1–10).",
                        "default": 5
                    },
                    "proxyConfiguration": {
                        "title": "Proxy configuration",
                        "type": "object",
                        "description": "Optional. ATS endpoints are public APIs, so a proxy is usually NOT needed. Use a datacenter proxy only if you hit rate limits.",
                        "default": {
                            "useApifyProxy": false
                        }
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
