# Scrape Job Listings from Greenhouse, Lever, Ashby & Workday

**Use case:** 

Extract structured job postings from any company career page powered by Greenhouse, Lever, Ashby, or Workday.

## Input

```json
{
  "companies": [
    {
      "ats": "greenhouse",
      "slug": "airbnb"
    }
  ],
  "maxJobsPerCompany": 10,
  "maxPages": 1,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "ats": {
    "label": "ATS",
    "format": "string"
  },
  "company": {
    "label": "Company",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "department": {
    "label": "Department",
    "format": "string"
  },
  "employment_type": {
    "label": "Employment Type",
    "format": "string"
  },
  "salary_min": {
    "label": "Salary Min",
    "format": "number"
  },
  "salary_max": {
    "label": "Salary Max",
    "format": "number"
  },
  "salary_currency": {
    "label": "Currency",
    "format": "string"
  },
  "compensation_summary": {
    "label": "Compensation",
    "format": "string"
  },
  "remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "posted_at": {
    "label": "Posted At",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "apply_url": {
    "label": "Apply URL",
    "format": "string"
  },
  "global_id": {
    "label": "Global ID",
    "format": "string"
  },
  "error": {
    "label": "Error",
    "format": "string"
  }
}
```

## About this Actor

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