# Lever Job Scraper: Scrape Jobs from Lever Boards

**Use case:** 

Extract live postings from Lever career boards in one run. Department filter, recency window, clean structured JSON for each role.

## Input

```json
{
  "urls": [
    {
      "url": "https://jobs.lever.co/anchorage",
      "departments": [
        "Engineering"
      ],
      "teams": [
        "Blockchain"
      ],
      "maxJobs": 20
    },
    {
      "url": "https://jobs.lever.co/mistral",
      "maxJobs": 20
    }
  ]
}
```

## Output

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

## About this Actor

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