λats-sdk
Adapters

Lever

Access publicly published job postings hosted on Lever.co.

Lever Adapter

Lever is used by thousands of growth-stage and mature tech enterprises such as Netflix, Atlassian, Palantir, and Spotify.

Usage

Direct Adapter Import

import { lever } from "ats-sdk/lever";

const adapter = lever({ site: "palantir" });
const { jobs, total, company } = await adapter.getJobs({
  workplace: "remote",
});

console.log(`Found ${total} remote jobs at ${company}`);

Auto-Discovery via Unified Client

import { createAtsClient } from "ats-sdk";

const ats = createAtsClient({
  companies: ["palantir", "netflix", "atlassian"],
});

const { jobs, total } = await ats.getJobs();

How to find the Company Slug

  1. Lever URLs take the form jobs.lever.co/<slug>.
  2. Examples:
    • palantir -> https://jobs.lever.co/palantir
    • netflix -> https://jobs.lever.co/netflix
    • atlassian -> https://jobs.lever.co/atlassian

On this page