# Lever Job Scraper — All Postings by Company, with Salary (`atsdata/lever-job-scraper`) Actor

Scrape every open posting from any Lever job board. Pass a company domain or board slug — get titles, teams, commitment, workplace type, parsed salary and full descriptions.

- **URL**: https://apify.com/atsdata/lever-job-scraper.md
- **Developed by:** [ATS Data](https://apify.com/atsdata) (community)
- **Categories:** Jobs, Lead generation, AI
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.00005 / actor start

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## Lever Job Scraper — All Postings by Company, with Salary

Scrape every open posting from any Lever job board. Pass a company domain or board slug — get titles, teams, commitment, workplace type, parsed salary and full descriptions.

```
Input:   ["palantir.com","jobs.lever.co/palantir","palantir"]
Output:  every open job — normalized, deduplicated, salary parsed
```

***

### What you actually get

Real rows from a live run:

| Job title | Company | Department | Location | Level | Salary |
|---|---|---|---|---|---|
| Backend Software Engineer - Application Development | palantir | Dev | Palo Alto, CA | mid | $135,000–200,000/yr |
| Administrative Business Partner - ShipOS | palantir | Administrative | Washington, D.C. | mid | $60,000–97,000/yr |

#### Straight to a spreadsheet

Export as CSV and nested fields flatten with `/` — no post-processing:

```csv
title,companySlug,department,locations/0,workplaceType,seniority,salary/min,salary/max,salary/currency,postedAt,source
Backend Software Engineer - Application Development,palantir,Dev,"Palo Alto, CA",hybrid,mid,135000,200000,USD,2026-06-18,lever
Administrative Business Partner - ShipOS,palantir,Administrative,"Washington, D.C.",hybrid,mid,60000,97000,USD,2026-06-18,lever
```

Full records also carry `jobId`, `employmentType`, `applyUrl`, `descriptionText`, `descriptionHtml`,
`contentHash` and `scrapedAt`. Turn off `includeDescription` for a smaller, faster payload.

***

### Input

Accepts any of these, mixed freely:

Company domain (palantir.com), board URL (jobs.lever.co/palantir) or bare board slug (palantir).

| Field | Type | Default | Description |
|---|---|---|---|
| `companies` | array | — | See above |
| `onlyNewJobs` | boolean | `false` | Return only jobs added or changed since the previous run |
| `trackingKey` | string | `default` | Track multiple company lists independently |
| `includeRemovedJobs` | boolean | `false` | Also emit jobs that disappeared |
| `includeDescription` | boolean | `true` | Include full description text and HTML |
| `maxJobsPerCompany` | integer | `0` | Cap per company (`0` = no limit) |

You don't need to know the board slug. Pass the company domain and it gets resolved automatically.

***

### Change tracking — turn it into a hiring monitor

Set **`onlyNewJobs: true`** and schedule the Actor. Each run returns only what changed:

- `added` — posted since the last run
- `updated` — title, salary, location or description changed
- `removed` — job closed or pulled

The first run stores a baseline; every run after that is a diff. Useful for sales intelligence (hiring is a buying signal), recruiting, and keeping a job index fresh without re-ingesting everything.

***

### Output

```json
{
  "jobId": "lever:acme:12345",
  "source": "lever",
  "companySlug": "acme",
  "companyDomain": "acme.com",
  "title": "Senior Backend Engineer",
  "department": "Engineering",
  "team": "Platform",
  "locations": ["New York, NY", "Remote (US)"],
  "workplaceType": "hybrid",
  "employmentType": "FullTime",
  "seniority": "senior",
  "salary": { "min": 180000, "max": 240000, "currency": "USD", "period": "year" },
  "descriptionText": "…",
  "descriptionHtml": "…",
  "applyUrl": "https://…",
  "postedAt": "2026-04-07T17:12:35.753Z",
  "scrapedAt": "2026-08-24T18:03:28.104Z",
  "contentHash": "593a0ec77ef05d3c",
  "changeType": "added"
}
```

`contentHash` changes only when meaningful content changes — use it for your own diffing.

`seniority` is derived from the title: `intern`, `junior`, `mid`, `senior`, `principal`, `manager`, `director`, `executive`.

***

### Salary

Salary ranges are parsed out of the posting text, handling the formats companies actually use. Version numbers, headcounts and date ranges are not mistaken for salary.

```
$173,000.00 - $259,600.00/yr      →  173000–259600 USD/year
€55k–€70k per year                →  55000–70000 EUR/year
USD 90000 to 120000 annually      →  90000–120000 USD/year
The salary range is $10,000/month →  10000 USD/month
```

Companies that don't publish salary return `salary: null`. Nothing is invented.

***

### Speed

No browser, no proxies — just the public JSON endpoint Lever already serves.

| Board | Jobs | Time |
|---|---|---|
| Lever / palantir | 308 | 1.4 s |

***

### Need more than Lever?

**[ATS Job Scraper](https://apify.com/atsdata/ats-job-scraper)** covers Greenhouse, Lever, Ashby and Workday in a single run with the same output schema — useful when your company list spans several ATS platforms.

***

### Notes

- Only **public** job board data is collected — the same pages any visitor can open. No accounts, no logins, no personal candidate data.
- Companies that can't be matched to a Lever board are skipped with a warning; the rest of the run continues.

# Actor input Schema

## `companies` (type: `array`):

Company domain (palantir.com), board URL (jobs.lever.co/palantir) or bare board slug (palantir).

## `onlyNewJobs` (type: `boolean`):

Compare against the previous run and return only added or changed jobs. Schedule this Actor daily to track hiring in near real time. The first run returns everything.

## `trackingKey` (type: `string`):

Name of the change-tracking state. Use different keys for independent company lists.

## `includeRemovedJobs` (type: `boolean`):

Also emit records for jobs that disappeared since the previous run.

## `includeDescription` (type: `boolean`):

Include full description text and HTML. Turn off for smaller, faster output.

## `maxJobsPerCompany` (type: `integer`):

Safety cap per company. 0 means no limit.

## Actor input object example

```json
{
  "companies": [
    "palantir.com",
    "jobs.lever.co/palantir",
    "palantir"
  ],
  "onlyNewJobs": false,
  "trackingKey": "default",
  "includeRemovedJobs": false,
  "includeDescription": true,
  "maxJobsPerCompany": 0
}
```

# Actor output Schema

## `jobs` (type: `string`):

All job records from this run, one item per job.

## `summary` (type: `string`):

Counts for this run — total found, written, and the added/updated/removed breakdown when change tracking is on.

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "companies": [
        "palantir.com",
        "jobs.lever.co/palantir",
        "palantir"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("atsdata/lever-job-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "companies": [
        "palantir.com",
        "jobs.lever.co/palantir",
        "palantir",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("atsdata/lever-job-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "companies": [
    "palantir.com",
    "jobs.lever.co/palantir",
    "palantir"
  ]
}' |
apify call atsdata/lever-job-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,atsdata/lever-job-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/rOS6WZIFoLy9ROF0f/builds/EQYuEmBjs4xF2BGrz/openapi.json
