# Greenhouse Job Scraper: Scrape Tech Company Jobs

**Use case:** 

Pull live job postings from Greenhouse boards like Figma, Discord, and Databricks. Filter by department and recency, get clean structured JSON.

## Input

```json
{
  "urls": [
    {
      "url": "https://job-boards.greenhouse.io/figma",
      "departments": [
        4016250004
      ],
      "maxJobs": 50
    },
    {
      "url": "https://job-boards.greenhouse.io/discord",
      "maxJobs": 50,
      "daysBack": 14
    },
    {
      "url": "https://job-boards.greenhouse.io/databricks",
      "maxJobs": 25
    }
  ]
}
```

## Output

```json
{
  "title": {
    "label": "Job Title",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "department": {
    "label": "Department",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "type": {
    "label": "Type",
    "format": "text"
  },
  "salary": {
    "label": "Salary",
    "format": "object"
  },
  "publishedAt": {
    "label": "Updated",
    "format": "date"
  },
  "postingUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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