# Scrape Greenhouse, Lever & Ashby Jobs

**Use case:** 

Export a small, normalized set of public jobs from Greenhouse, Lever, and Ashby boards with titles, locations, departments, URLs, and change fields.

## Input

```json
{
  "companyNames": [
    "Stripe",
    "Aircall",
    "OpenAI"
  ],
  "companyDomains": [],
  "atsBoardUrls": [
    "https://boards.greenhouse.io/stripe",
    "https://jobs.lever.co/aircall",
    "https://jobs.ashbyhq.com/openai"
  ],
  "atsSlugs": [],
  "maxCompanies": 3,
  "maxJobsPerCompany": 3,
  "includeDescriptions": false,
  "watchMode": false,
  "enableAiAnalysis": false,
  "llmProvider": "openrouter",
  "ollamaBaseUrl": "http://localhost:11434",
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "company": {
    "label": "Company",
    "format": "string"
  },
  "source_ats": {
    "label": "Source ATS",
    "format": "string"
  },
  "title": {
    "label": "Job Title",
    "format": "string"
  },
  "department": {
    "label": "Department",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "remote_status": {
    "label": "Remote Status",
    "format": "string"
  },
  "seniority": {
    "label": "Seniority",
    "format": "string"
  },
  "salary_min": {
    "label": "Salary Minimum",
    "format": "number"
  },
  "salary_max": {
    "label": "Salary Maximum",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "change_type": {
    "label": "Change Type",
    "format": "string"
  },
  "url": {
    "label": "Job URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Greenhouse, Lever, Ashby & Workable Jobs Scraper](https://apify.com/harvestlab/ats-hiring-signal-monitor.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/harvestlab/ats-hiring-signal-monitor.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/harvestlab/ats-hiring-signal-monitor.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
