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
- Lever URLs take the form
jobs.lever.co/<slug>. - Examples:
palantir->https://jobs.lever.co/palantirnetflix->https://jobs.lever.co/netflixatlassian->https://jobs.lever.co/atlassian