# Lever Jobs Scraper — pull all postings from a board

**Use case:** 

Scrape all open roles from any jobs.lever.co board into structured JSON: titles, teams, locations, seniority, and direct apply links.

## Input

```json
{
  "companies": [
    "https://jobs.lever.co/spotify",
    "https://jobs.lever.co/plaid"
  ],
  "titleKeywords": [],
  "departmentKeywords": [],
  "remoteOnly": false,
  "includeDescription": false,
  "includeUnconfirmed": false,
  "onlyNewJobs": false,
  "monitorId": "default",
  "maxJobsPerCompany": 0,
  "maxJobs": 0,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "company": {
    "label": "Company",
    "format": "string"
  },
  "title": {
    "label": "Job title",
    "format": "string"
  },
  "department": {
    "label": "Department",
    "format": "string"
  },
  "seniority": {
    "label": "Seniority",
    "format": "string"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "workplaceType": {
    "label": "Workplace",
    "format": "string"
  },
  "remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "employmentType": {
    "label": "Type",
    "format": "string"
  },
  "url": {
    "label": "Apply link",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published",
    "format": "string"
  },
  "ats": {
    "label": "ATS",
    "format": "string"
  }
}
```

## About this Actor

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