# Lever job postings scraper - open jobs by company

**Use case:** 

Open jobs from any company hiring on Lever, read from Lever's own public postings API: give the board slugs you care about and get one row per posting with company, job title, location, remote flag, posting date, job link and the full description, plus team and commitment where the board sets them. This example reads only the Palantir, Veeva and Shield AI boards; swap in your own slugs.

## Input

```json
{
  "greenhouse": [],
  "lever": [
    "palantir",
    "veeva",
    "shieldai"
  ],
  "ashby": [],
  "workable": [],
  "remote_only": false,
  "max_records": 100,
  "workable_details": true,
  "request_interval_ms": 500,
  "contact_email": "info@steelyardclinical.com"
}
```

## Output

```json
{
  "ats": {
    "label": "ATS",
    "format": "text"
  },
  "company": {
    "label": "Company",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "department": {
    "label": "Department",
    "format": "text"
  },
  "team": {
    "label": "Team",
    "format": "text"
  },
  "location": {
    "label": "Location",
    "format": "text"
  },
  "remote": {
    "label": "Remote",
    "format": "boolean"
  },
  "remote_source": {
    "label": "Remote source",
    "format": "text"
  },
  "employment_type": {
    "label": "Type",
    "format": "text"
  },
  "posted_at": {
    "label": "Posted",
    "format": "date"
  },
  "salary_min": {
    "label": "Salary min",
    "format": "number"
  },
  "salary_max": {
    "label": "Salary max",
    "format": "number"
  },
  "salary_currency": {
    "label": "Currency",
    "format": "text"
  },
  "url": {
    "label": "Job page",
    "format": "link"
  },
  "fetched_at": {
    "label": "Fetched",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Job Listings API - Greenhouse, Lever, Ashby, Workable jobs](https://apify.com/retrainmap/ats-jobs.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/retrainmap/ats-jobs.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/retrainmap/ats-jobs.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
