How to integrate Lever jobs

Fetch Lever jobs for free from their public job board endpoints. Just grab the job board URLs from our catalog and you're ready to go.

Company job feeds

2,692

Jobs

71,243

New feeds (30 days)

+8

Start from catalog rows with Lever site names and canonical feed_url values. Each row is one company's public postings endpoint.

Request each site's postings list with Accept: application/json or ?mode=json. Parse the root JSON array into your job store. Large boards need pagination via skip and limit.

Watch for new Lever sites and retired feeds on whatever cadence fits your product — the catalog is the source of truth for which boards still exist.

New to the catalog workflow? Start with Getting started.

Fetch jobs from the public API

Replace {account} with the Lever site slug from our catalog. EU-hosted accounts use api.eu.lever.co and jobs.eu.lever.co instead of the global hosts.

Feed URL pattern
https://api.lever.co/v0/postings/{account}
Example request
curl -H "Accept: application/json" "https://api.lever.co/v0/postings/{account}?mode=json"

The published postings API returns a JSON array. Each posting has id, text (title), categories (location, team, department, commitment), hostedUrl, applyUrl, createdAt, and workplaceType. Only published, public postings appear — internal or draft roles need Lever's authenticated API.

Example JSON response
[
  {
    "id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "text": "Account Executive",
    "hostedUrl": "https://jobs.lever.co/example-co/a1b2c3d4-e5f6-7890-abcd-ef1234567890",
    "applyUrl": "https://jobs.lever.co/example-co/a1b2c3d4-e5f6-7890-abcd-ef1234567890/apply",
    "categories": {
      "team": "Sales",
      "location": "London",
      "commitment": "Full-time"
    },
    "createdAt": 1740000000000,
    "workplaceType": "hybrid"
  }
]

Use ?mode=json or an Accept: application/json header. HTML and iframe modes are for embedding on career pages, not for ETL pipelines.

API reference: Lever Postings API.

Pricing

Get the full Lever feed catalog

Get access to 2,692 validated job feeds with 71,243 jobs on Lever and other ATS platforms in our catalog via API or CSV export.