All ATS Platforms

Lever Jobs API

Modern recruiting software used by fast-growing companies. Quality job data with detailed role information.

300K+Jobs per month
<3hDiscovery time
HourlyRefresh rate
Live Data

Lever Jobs Distribution

Real-time visualization of active job postings across the globe

Interactive

Try the API

Test Lever job search with our live API playground

What's Included

Comprehensive job details
Team & department data
Work type classification
Benefits information
Application requirements
DIY Integration

Build It Yourself?

Here's what it takes to fetch Lever jobs directly. simple complexity

Fetching Lever Jobstypescript
Lever has a relatively simple JSON API, but still requires handling pagination and rate limits.
// Lever's public posting API - simpler than most
const companySlug = 'netflix';

const response = await fetch(
  `https://api.lever.co/v0/postings/${companySlug}?mode=json`
);

const jobs = await response.json();

// Each job has basic info, but details need parsing
jobs.forEach(job => {
  console.log({
    id: job.id,
    title: job.text,
    location: job.categories?.location,
    team: job.categories?.team,
    commitment: job.categories?.commitment,
    // Description is HTML that needs sanitization
    description: job.descriptionPlain || parseHTML(job.description),
    applyUrl: job.applyUrl,
  });
});

// But wait - to get ALL companies using Lever,
// you need to discover their slugs first...
// There's no directory API for that.
Challenges You'll Face
  • No company discovery API - must know company slugs
  • Rate limited to ~100 requests/minute
  • Some companies disable the public API
  • Description HTML varies wildly between companies
  • No webhook support for job changes

Skip the complexity. Get all Lever jobs with a single API call.

Use Our API Instead

Use Cases

Growth company tracking
Tech talent sourcing
Compensation research

Sample Companies Using Lever

Netflix
Spotify
Twitch
Lyft
Coinbase

Ready to Access Lever Jobs?

Start with our free tier and get instant access to Lever job data.