# Greenhouse jobs: all open jobs from any company

**Use case:** 

Get every open job from companies that use Greenhouse, in a clean format with title, departments, location, country codes, posting date and apply link. Use your own list of Greenhouse boards or search thousands of them in our directory. It starts with a limit of 500 jobs, so a first run costs about $2.50. Raise "Max jobs in total" to get everything.

## Input

```json
{
  "companies": [
    "https://boards.greenhouse.io/stripe",
    "https://boards.greenhouse.io/figma",
    "https://boards.greenhouse.io/airbnb"
  ],
  "useDirectory": false,
  "maxCompanies": 0,
  "searchInDescription": false,
  "postedWithinDays": 0,
  "maxJobsPerCompany": 0,
  "maxJobs": 500,
  "includeDescription": true,
  "redactContactDetails": true,
  "maxConcurrency": 16
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "countryCodes": {
    "label": "Countries",
    "format": "array"
  },
  "workplaceType": {
    "label": "Workplace",
    "format": "text"
  },
  "department": {
    "label": "Department",
    "format": "text"
  },
  "employmentType": {
    "label": "Employment",
    "format": "text"
  },
  "postedAt": {
    "label": "Posted",
    "format": "date"
  },
  "applicationDeadline": {
    "label": "Deadline",
    "format": "date"
  },
  "url": {
    "label": "Job page",
    "format": "link"
  },
  "ats": {
    "label": "ATS",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Career Site Jobs Scraper: Teamtailor, Greenhouse, Lever](https://apify.com/vindr/eu-career-site-jobs.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/vindr/eu-career-site-jobs.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/vindr/eu-career-site-jobs.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`).
