# Company Careers Job Scraper — Greenhouse, Lever & Ashby (`hipersoft/company-jobs-scraper`) Actor

Scrape open jobs directly from company career pages powered by Greenhouse, Lever and Ashby — the biggest applicant-tracking systems. Give it company board names and get every job with title, location, department, type, remote flag, apply URL and full description. Public APIs, no login, no anti-bot.

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

## Pricing

from $0.0096 / job scraped

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 Careers Job Scraper — Greenhouse, Lever & Ashby

Scrape open roles straight from companies' own career pages. Most modern companies run
their careers on **Greenhouse, Lever or Ashby** — this Actor reads those platforms'
**public job-board APIs**, so you get clean, structured jobs with **no login and no
setup**. Just give it a list of company board names.

Perfect for **job boards & aggregators, recruiting/sourcing, talent-market research,
and sales prospecting into hiring companies**.

### What you get per job

| Field | Notes |
|---|---|
| `title` | Job title. |
| `location`, `remote` | Location string and a remote flag. |
| `department`, `team` | Org unit (when the ATS provides it). |
| `employmentType` | Full-time / contract / intern, when available. |
| `url` | Direct apply/job link. |
| `publishedAt`, `updatedAt` | Posting timestamps. |
| `description` | Full job description text (enable *Include full job description*). |
| `company`, `platform`, `jobId` | Board token, which ATS, and the ATS job id. |

### Input

```json
{
  "companies": ["stripe", "ramp", "netflix"],
  "platform": "auto",
  "includeDescription": false
}
```

- **companies** — company **board tokens** (usually the company name) or ATS URLs, one per line.
- **platform** — `auto` tries Greenhouse → Lever → Ashby for each company, or pick one.
- **includeDescription** — include the full job description text.
- **maxConcurrency** — companies fetched in parallel.
- **proxyConfiguration** — optional; only if you get rate-limited.

#### Finding a company's board token

It's usually the company name (`stripe`, `ramp`). Or copy it from their careers URL:
`boards.greenhouse.io/`**`airbnb`**, `jobs.lever.co/`**`netflix`**, `jobs.ashbyhq.com/`**`ramp`**.

### Output (one row per job)

```json
{
  "company": "stripe",
  "platform": "greenhouse",
  "jobId": "7954688",
  "title": "Account Executive, AI Sales",
  "location": "San Francisco, CA",
  "remote": false,
  "department": "Sales",
  "employmentType": null,
  "url": "https://stripe.com/jobs/search?gh_jid=7954688",
  "updatedAt": "2026-06-26T17:05:44-04:00"
}
```

### FAQ

**Do I need accounts or API keys for Greenhouse, Lever or Ashby?**
No. The Actor reads the public job-board APIs that [Greenhouse](https://www.greenhouse.com), [Lever](https://www.lever.co) and [Ashby](https://www.ashbyhq.com) already serve to render companies' career pages — no login, no API key.

**How many jobs can I get per run?**
It returns every open role each company currently lists on its board. Add more companies to the `companies` list for more jobs, and use `maxConcurrency` to control how many boards are fetched in parallel.

**Is scraping company career pages legal?**
Only public job data these ATS platforms already publish is read. This is an independent tool, not affiliated with Greenhouse, Lever or Ashby; review the relevant terms for your use case.

**What's the output format?**
One JSON row per job with `title`, `location`, `remote`, `department`, `employmentType`, `url`, timestamps, `company`, `platform`, `jobId` and (optionally) the full `description`. Export as JSON, CSV or Excel.

**Can I filter by company or platform?**
Yes. Provide company **board tokens** (usually the company name) or ATS URLs in `companies`. Set `platform` to `auto` to try Greenhouse → Lever → Ashby for each, or pin it to a single platform.

### Related Actors

Combine company career data with job-board and company scrapers:

- [Y Combinator Companies Scraper](https://apify.com/hipersoft/yc-companies-scraper) — the full YC startup directory, including which companies are hiring.
- [Remote Jobs Aggregator](https://apify.com/hipersoft/remote-jobs-aggregator) — five remote boards merged and de-duplicated.
- [Dice Jobs Scraper](https://apify.com/hipersoft/dice-scraper) — US tech jobs from Dice with salaries.
- [Reed Job Scraper](https://apify.com/hipersoft/reed-scraper) — UK jobs from Reed.co.uk with salaries and descriptions.

### Notes

Reads only the public job-board APIs these ATS platforms already serve to render their
career pages. A company appears empty if it doesn't use one of these three systems (or
uses a custom board token) — check its careers URL for the right token.

# Actor input Schema

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

Company board tokens or ATS URLs — e.g. "stripe", "ramp", "netflix", or "https://boards.greenhouse.io/airbnb". One per line. The board token is usually the company name.

## `platform` (type: `string`):

Which system to query. "Auto" tries Greenhouse, then Lever, then Ashby for each company.

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

Fetch and include the full job description text (larger output, slightly slower).

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

How many company boards to fetch in parallel.

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

Optional. These public ATS APIs work from datacenter IPs; enable a proxy only if rate-limited.

## Actor input object example

```json
{
  "companies": [
    "stripe",
    "ramp"
  ],
  "platform": "auto",
  "includeDescription": false,
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# 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": [
        "stripe",
        "ramp"
    ]
};

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

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

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=hipersoft/company-jobs-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/acts/AZtGOR0EiMbSfFzWq/builds/3Ct8u94aQkEG7tiAj/openapi.json
