# Greenhouse Job Scraper — 100 Free (`sourabhbgp/greenhouse-scraper`) Actor

Scrape job listings from any company Greenhouse job board. Get titles, departments, locations, and full descriptions. Filter by keyword, department, or location. HTTP-only, no browser needed. 100 free results, then $2.00 per 1,000 jobs.

- **URL**: https://apify.com/sourabhbgp/greenhouse-scraper.md
- **Developed by:** [Sourabh Kumar](https://apify.com/sourabhbgp) (community)
- **Categories:** Business, Lead generation
- **Stats:** 4 total users, 1 monthly users, 22.2% runs succeeded, NaN bookmarks
- **User rating**: No ratings yet

## Pricing

$2.00 / 1,000 job listings

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

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

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

## 🌱 Greenhouse Job Scraper — 100 Free

Scrape all job listings from any company's Greenhouse job board. Get titles, departments, locations, offices, and full HTML descriptions in seconds. One API call per company — no browser, no proxy, no rate limits.

### ⚡ Why this Greenhouse scraper?

Greenhouse powers job boards for thousands of companies — Stripe, Airbnb, Coinbase, DoorDash, and more. This actor gives you instant, structured access to every open position:

- 💰 **Affordable**: Just $2.00 per 1,000 jobs. First 100 jobs are free — forever.
- 🚀 **Fast**: Single HTTP API call returns ALL jobs for a company. No pagination, no waiting.
- 🔍 **Filterable**: Narrow results by department, location, or keyword — all case-insensitive partial match.
- 📋 **Flat CSV-ready output**: 12 fields per job. Drop straight into Excel, Google Sheets, or your ATS.
- 🏢 **Any company**: Works with any company that uses Greenhouse for hiring.
- 🔒 **Reliable**: Pure API wrapper — no scraping, no anti-bot issues, no breakage.

### 📦 What data can you extract?

Each job listing includes **12 data fields**:

- 📝 **Job details**: Title, job ID, requisition ID
- 🏢 **Company**: Company name, company slug
- 📍 **Location**: Location name, office name(s)
- 🏛️ **Organization**: Department name(s)
- 📄 **Content**: Full HTML job description (optional — disable to reduce dataset size)
- 🔗 **Links**: Direct URL to the job posting on Greenhouse
- 📅 **Dates**: Published date, last updated date

### 💲 How much does it cost?

The Greenhouse Job Scraper uses **pay-per-event pricing** — you only pay for what you extract:

- **$2.00 per 1,000 jobs**
- **First 100 jobs are FREE** (lifetime, across all runs)

**Example costs:**

| What you extract | Jobs | Cost |
|-----------------|------|------|
| All open roles at a startup (50 jobs) | 50 | Free |
| Engineering jobs at Stripe | 200 | $0.30 |
| All jobs at a large company (2,000 jobs) | 2,000 | $3.80 |
| Bulk: 10 companies × 500 jobs each | 5,000 | $9.80 |

### 🎯 Use cases

- 🔎 **Job market research**: Track open positions across companies to identify hiring trends and in-demand skills
- 📊 **Competitive intelligence**: Monitor competitor hiring to understand their growth strategy and team structure
- 💼 **Recruiting & sourcing**: Build a database of open roles to match candidates or identify companies hiring in your niche
- 📈 **Investment research**: Track headcount growth and department expansion at portfolio companies
- 🤖 **Job board aggregation**: Feed Greenhouse listings into your own job board or career platform
- 📋 **HR analytics**: Analyze job title patterns, department distribution, and location spread across industries
- 🔗 **CRM enrichment**: Append hiring data to company records — which departments are growing, what roles are open
- 🏢 **Sales prospecting**: Find companies actively hiring for roles that need your product (e.g., companies hiring data engineers → sell your data tool)

### 📥 Input

| Field | Type | Description | Default |
|-------|------|-------------|---------|
| `companySlug` | string | **Required.** Company identifier from their Greenhouse URL | — |
| `department` | string | Filter by department (partial match, case-insensitive) | — |
| `location` | string | Filter by location (partial match, case-insensitive) | — |
| `keyword` | string | Filter by job title keyword (partial match, case-insensitive) | — |
| `includeDescription` | boolean | Include full HTML job description in output | `true` |
| `maxResults` | integer | Maximum number of jobs to return. Leave empty for all. | No limit |

#### 🔍 How to find the company slug

The company slug is the part after `boards.greenhouse.io/` in the company's Greenhouse job board URL:

| Board URL | Slug |
|-----------|------|
| `boards.greenhouse.io/stripe` | `stripe` |
| `boards.greenhouse.io/airbnb` | `airbnb` |
| `boards.greenhouse.io/coinbase` | `coinbase` |
| `boards.greenhouse.io/doordash` | `doordash` |

**Tip:** Google `"site:boards.greenhouse.io" [company name]` to find any company's Greenhouse board.

#### 💡 Example inputs

```json
{
    "companySlug": "stripe"
}
````

```json
{
    "companySlug": "airbnb",
    "department": "Engineering",
    "maxResults": 50
}
```

```json
{
    "companySlug": "coinbase",
    "keyword": "Senior",
    "location": "Remote",
    "includeDescription": false
}
```

### 📤 Output

Each job is stored as a flat JSON object with 12 fields:

```json
{
    "title": "Software Engineer, Infrastructure",
    "company": "Stripe",
    "location": "San Francisco, CA",
    "department": "Engineering",
    "office": "San Francisco",
    "description": "<div><h3>About the role</h3><p>We're looking for...</p></div>",
    "url": "https://boards.greenhouse.io/stripe/jobs/1234567",
    "publishedAt": "2026-03-15T18:00:00.000Z",
    "updatedAt": "2026-03-15T18:00:00.000Z",
    "requisitionId": "REQ-1234",
    "jobId": 1234567,
    "companySlug": "stripe"
}
```

You can download results in JSON, CSV, Excel, or connect via API.

### 🌐 Data source

All data comes from the **Greenhouse Board API** — the official public API that powers company job boards hosted on Greenhouse.

- **API**: `https://boards-api.greenhouse.io/v1/boards/{slug}/jobs`
- **Coverage**: Any company using Greenhouse for their job board (thousands of companies)
- **Update frequency**: Real-time — the API returns the current state of the job board
- **No login required**: Public API, no API key needed
- **No rate limits**: The Board API is designed for public access

### 💡 Tips and notes

- 🔗 **Finding slugs**: The slug is always lowercase. Try the company name, or check `boards.greenhouse.io/{company}` directly.
- 🏢 **Department filter**: Use partial names — `"Eng"` matches "Engineering", "Engine", etc.
- 📍 **Location filter**: Works with cities, states, countries, or "Remote" — `"Remote"` will match "Remote - US", "Remote - Europe", etc.
- 📝 **Descriptions**: Job descriptions are returned as HTML. Disable `includeDescription` if you only need metadata (title, location, department) to reduce dataset size significantly.
- 📊 **All jobs at once**: The Greenhouse Board API returns all jobs in a single request — no pagination. A company with 2,000 open roles comes back in one call.
- 🔄 **Filters stack**: All filters are AND logic — a job must match ALL active filters. Use fewer filters for broader results.
- ⚡ **Speed**: Expect sub-second response for most companies. Larger companies (1,000+ jobs with descriptions) may take a few seconds.

# Actor input Schema

## `companySlug` (type: `string`):

The company identifier from their Greenhouse board URL. For example, if the board is at boards.greenhouse.io/stripe, enter 'stripe'.

## `department` (type: `string`):

Only return jobs in this department (partial match, case-insensitive). Example: 'Engineering', 'Sales'.

## `location` (type: `string`):

Only return jobs matching this location (partial match, case-insensitive). Example: 'San Francisco', 'Remote'.

## `keyword` (type: `string`):

Only return jobs whose title contains this keyword (partial match, case-insensitive). Example: 'Senior', 'Manager'.

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

Include full HTML job description in output. Disable to reduce dataset size.

## `maxResults` (type: `integer`):

Maximum number of job listings to return. Leave empty for all jobs.

## Actor input object example

```json
{
  "companySlug": "stripe",
  "includeDescription": true
}
```

# Actor output Schema

## `jobs` (type: `string`):

Job records with title, company, location, department, description, and URL

# 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 = {
    "companySlug": "stripe"
};

// Run the Actor and wait for it to finish
const run = await client.actor("sourabhbgp/greenhouse-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 = { "companySlug": "stripe" }

# Run the Actor and wait for it to finish
run = client.actor("sourabhbgp/greenhouse-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 '{
  "companySlug": "stripe"
}' |
apify call sourabhbgp/greenhouse-scraper --silent --output-dataset

```

## MCP server setup

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

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Greenhouse Job Scraper — 100 Free",
        "description": "Scrape job listings from any company Greenhouse job board. Get titles, departments, locations, and full descriptions. Filter by keyword, department, or location. HTTP-only, no browser needed. 100 free results, then $2.00 per 1,000 jobs.",
        "version": "0.0",
        "x-build-id": "Wkf9gqNYKvrnNn8pn"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/sourabhbgp~greenhouse-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-sourabhbgp-greenhouse-scraper",
                "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/sourabhbgp~greenhouse-scraper/runs": {
            "post": {
                "operationId": "runs-sync-sourabhbgp-greenhouse-scraper",
                "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/sourabhbgp~greenhouse-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-sourabhbgp-greenhouse-scraper",
                "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": [
                    "companySlug"
                ],
                "properties": {
                    "companySlug": {
                        "title": "Company Slug",
                        "type": "string",
                        "description": "The company identifier from their Greenhouse board URL. For example, if the board is at boards.greenhouse.io/stripe, enter 'stripe'."
                    },
                    "department": {
                        "title": "Department Filter",
                        "type": "string",
                        "description": "Only return jobs in this department (partial match, case-insensitive). Example: 'Engineering', 'Sales'."
                    },
                    "location": {
                        "title": "Location Filter",
                        "type": "string",
                        "description": "Only return jobs matching this location (partial match, case-insensitive). Example: 'San Francisco', 'Remote'."
                    },
                    "keyword": {
                        "title": "Keyword Filter",
                        "type": "string",
                        "description": "Only return jobs whose title contains this keyword (partial match, case-insensitive). Example: 'Senior', 'Manager'."
                    },
                    "includeDescription": {
                        "title": "Include Job Description",
                        "type": "boolean",
                        "description": "Include full HTML job description in output. Disable to reduce dataset size.",
                        "default": true
                    },
                    "maxResults": {
                        "title": "Max Results",
                        "minimum": 1,
                        "type": "integer",
                        "description": "Maximum number of job listings to return. Leave empty for all jobs."
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
