# Career Page Jobs Scraper — Greenhouse, Lever & Ashby API (`factpipe/company-jobs-scraper`) Actor

Paste company websites: finds each careers page, detects Greenhouse, Lever or Ashby and returns every open job (title, location, remote, department, apply link) as flat JSON. $2 per 1,000 jobs.

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

## Pricing

$2.00 / 1,000 job results

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/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

## Career Page Jobs Scraper — Greenhouse, Lever & Ashby API

Give it **any company website** — it finds the careers page, detects the ATS, and pulls every live job posting through the **official public job-board APIs** of Greenhouse, Lever, and Ashby. No brittle HTML scraping of career pages, no anti-bot fights: the same JSON feeds the career pages themselves use. Direct board URLs (e.g. `boards.greenhouse.io/gitlab`) work too.

### Quick start

1. Click **Start** with the two prefilled career pages (GitLab on Greenhouse, Ramp on Ashby). It finishes in under a minute.
2. You get up to 25 open jobs per company with title, location, department and apply link.
3. That first run costs at most $0.10, well within Apify's free monthly credit. Then swap in your own input or schedule it.

### What you get

One flat record per live job posting:

```json
{
  "query": "https://boards.greenhouse.io/gitlab",
  "found": true,
  "ats": "greenhouse",
  "board": "gitlab",
  "company": "GitLab",
  "job_id": "855665800",
  "title": "Senior Backend Engineer",
  "department": null,
  "location": "Remote",
  "remote": true,
  "employment_type": null,
  "published_at": "2026-08-14",
  "job_url": "https://job-boards.greenhouse.io/gitlab/jobs/855665800",
  "apply_url": "https://job-boards.greenhouse.io/gitlab/jobs/855665800",
  "source_url": "https://boards-api.greenhouse.io/v1/boards/gitlab/jobs",
  "fetched_at": "2026-09-12T12:00:00.000Z"
}
```

### Use cases

- **Recruiting & talent intelligence**: track competitors' live openings by team and location.
- **Sales signals**: hiring bursts reveal budgets and priorities — feed your CRM on a schedule.
- **Job boards & aggregators**: clean, deduplicated postings straight from source APIs.
- **AI agents**: tiny input schema, deterministic output — ideal via API or MCP.

### Switching from another career-page scraper

Same idea, same inputs: a list of company URLs in, flat job records out. Field mapping: `text/title → title`, `hostedUrl/absolute_url → job_url`, `categories.location/location.name → location`. Plus `source_url` and `fetched_at` on every record. **You are only charged per job row delivered — companies where no supported ATS is detected are free.**

### Input

| Field | Type | Notes |
|---|---|---|
| `companyUrls` | string\[], required | Company homepages or direct Greenhouse/Lever/Ashby board URLs |
| `maxJobsPerCompany` | integer | Cap on charged rows per company (default 200) |

### Pricing (pay per event)

| Event | Price | Meaning |
|---|---|---|
| `job-result` | **$2.00 per 1,000** ($0.002 each) | One live job posting delivered. **Detection misses, empty boards, and empty runs are never charged.** |

Example: 1,000 jobs cost **$2.00**. You only pay for delivered results.

### Related factpipe Actors

- [UK Companies House Lookup API — Company Data, No API Key](https://apify.com/factpipe/uk-company-lookup) — UK company registry records
- [Email Security Checker — SPF, DKIM, DMARC & MX Audit](https://apify.com/factpipe/email-security-checker) — SPF, DKIM and DMARC domain audits
- [Sitemap URL Extractor & 404 Checker — XML Sitemap Scraper](https://apify.com/factpipe/sitemap-url-extractor) — every URL from a site's sitemaps

### FAQ

**Which applicant tracking systems are supported?**
Greenhouse, Lever and Ashby, via their official public job-board APIs. Give a company homepage and the Actor detects the ATS, or pass a board URL directly.

**Can I track hiring at many companies on a schedule?**
Yes. Put a list of company URLs in `companyUrls` and schedule the Actor; each run returns every live posting with title, department, location, remote flag and apply URL.

**What if a company uses another ATS?**
The company is reported as not found and nothing is charged.

**Can I call it from Python, JavaScript, Make, Zapier or an AI agent?**
Yes. Run it through the Apify API or official Python/JavaScript clients, connect it to Make, Zapier, n8n, Slack or Google Sheets via Apify integrations, or expose it to AI agents through the Apify MCP server. Input is small and output is deterministic flat JSON.

### Reliability

Official ATS APIs, retries with backoff, structured failure reporting, health-checked daily, issues triaged daily.

# Actor input Schema

## `companyUrls` (type: `array`):

Company homepages (we find the careers page and ATS automatically) or direct Greenhouse/Lever/Ashby board URLs.

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

Cap on charged job records per company.

## Actor input object example

```json
{
  "companyUrls": [
    "https://boards.greenhouse.io/gitlab",
    "https://jobs.ashbyhq.com/ramp"
  ],
  "maxJobsPerCompany": 25
}
```

# Actor output Schema

## `resultsDatasetUrl` (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 = {
    "companyUrls": [
        "https://boards.greenhouse.io/gitlab",
        "https://jobs.ashbyhq.com/ramp"
    ],
    "maxJobsPerCompany": 25
};

// Run the Actor and wait for it to finish
const run = await client.actor("factpipe/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 = {
    "companyUrls": [
        "https://boards.greenhouse.io/gitlab",
        "https://jobs.ashbyhq.com/ramp",
    ],
    "maxJobsPerCompany": 25,
}

# Run the Actor and wait for it to finish
run = client.actor("factpipe/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 '{
  "companyUrls": [
    "https://boards.greenhouse.io/gitlab",
    "https://jobs.ashbyhq.com/ramp"
  ],
  "maxJobsPerCompany": 25
}' |
apify call factpipe/company-jobs-scraper --silent --output-dataset

```

## MCP server setup

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