# Company Jobs Scraper — Greenhouse, Lever & Ashby (`x402opklaar/company-jobs-scraper`) Actor

Company slug or careers URL in, open roles out — straight from each company's ATS (Greenhouse, Lever, Ashby) via official public JSON. Title, location, department, type, apply URL, posted date. Store auto-detected. Charged per role.

- **URL**: https://apify.com/x402opklaar/company-jobs-scraper.md
- **Developed by:** [Opklaar](https://apify.com/x402opklaar) (community)
- **Categories:** Jobs, Automation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$1.00 / 1,000 job returneds

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

Company in, open roles out. Pulls a company's live job postings **straight from its applicant tracking system** (Greenhouse, Lever, or Ashby) via each platform's **official public JSON board** — no login, no rendered-page scraping, so results are clean and stable.

- **Three ATS platforms, one actor** — Greenhouse, Lever, Ashby, auto-detected
- **Flexible input** — a company slug (`airbnb`), a careers URL (`boards.greenhouse.io/…`, `jobs.lever.co/…`, `jobs.ashbyhq.com/…`), or `platform:slug` (`greenhouse:airbnb`)
- **Normalized output** — same fields across all three: title, location, department, team, employment type, remote flag, apply URL, posted date
- **Optional descriptions** — full role text when you need it
- **Sustainable & clean** — official public endpoints, not brittle HTML scraping
- **Honest pricing** — one charge per role returned; companies with no roles (or not on a supported ATS) are reported and **never charged**

### Input

```json
{
    "companies": ["airbnb", "ashby:ramp", "jobs.lever.co/matchgroup"],
    "includeDescription": false,
    "maxJobsPerCompany": 0
}
```

### Output (one dataset item per role)

```json
{
    "company": "airbnb",
    "platform": "greenhouse",
    "title": "Acquisition Manager",
    "location": "United States",
    "department": "Business Development",
    "team": null,
    "employment_type": "Full-time",
    "remote": true,
    "url": "https://boards.greenhouse.io/airbnb/jobs/1234567",
    "posted_at": "2026-08-14T12:00:00Z",
    "job_id": "1234567"
}
```

### Pricing

One event: `job` — charged per role returned. A company with no open roles, or one that isn't on Greenhouse / Lever / Ashby, is reported with an `error` and **not charged**.

### Typical uses

- **Recruiting & sales intel** — track exactly what target companies are hiring for, right now
- **Job boards & aggregators** — ingest clean, structured postings from company career pages
- **Market research** — headcount signals and hiring trends by team/department
- **Job-seeker tools** — watch a set of companies for new roles

### Which companies are covered?

Any company whose careers page is powered by **Greenhouse, Lever, or Ashby** — that's a large share of tech and startup employers. Give a bare slug and the actor tries all three automatically; use `platform:slug` to be explicit.

### Works with AI agents

Exposed via Apify's MCP server — an agent can call *"list the open engineering roles at these companies"* in one step.

### FAQ

**Company not found?** It may use a different ATS (Workday, Greenhouse-embedded, custom). The row reports that clearly and isn't charged.

**Bulk?** Pass many companies; each role is one dataset row and one charge, misses never charged.

# Actor input Schema

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

Company board slugs (e.g. airbnb), careers URLs (boards.greenhouse.io/…, jobs.lever.co/…, jobs.ashbyhq.com/…), or platform:slug (e.g. greenhouse:airbnb). A bare slug is auto-detected across all three ATS platforms.

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

Include the full role description text (larger output).

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

0 = all open roles.

## Actor input object example

```json
{
  "companies": [
    "airbnb",
    "ashby:ramp",
    "lever:matchgroup"
  ],
  "includeDescription": false,
  "maxJobsPerCompany": 0
}
```

# 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": [
        "airbnb",
        "ashby:ramp",
        "lever:matchgroup"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("x402opklaar/company-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": [
        "airbnb",
        "ashby:ramp",
        "lever:matchgroup",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("x402opklaar/company-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": [
    "airbnb",
    "ashby:ramp",
    "lever:matchgroup"
  ]
}' |
apify call x402opklaar/company-jobs-scraper --silent --output-dataset

```

## MCP server setup

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