# Greenhouse Jobs Scraper for Company Boards

**Use case:** 

Extract open jobs from Greenhouse company boards with titles, locations, departments, and posting URLs.

## Input

```json
{
  "mode": "company_jobs",
  "companySlugs": [
    "airbnb",
    "stripe"
  ],
  "jobIds": [],
  "includeContent": true,
  "includeQuestions": false,
  "maxJobsPerCompany": 25
}
```

## Output

```json
{
  "jobId": {
    "label": "Job ID",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "departments": {
    "label": "Departments",
    "format": "array"
  },
  "updatedAt": {
    "label": "Updated At",
    "format": "string"
  },
  "firstPublished": {
    "label": "First Published",
    "format": "string"
  },
  "url": {
    "label": "Greenhouse URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Greenhouse Jobs Scraper](https://apify.com/automation-lab/greenhouse-jobs-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/greenhouse-jobs-scraper) to learn more, explore other use cases, and run it yourself.