Adapters
Ashby
Query modern tech companies using Ashby's high-performance posting API.
Ashby Adapter
Ashby powers job boards for companies like Ramp, Linear, Retool, Cursor, Vercel, and OpenAI.
Usage
Direct Adapter Import
import { ashby } from "ats-sdk/ashby";
const adapter = ashby({ boardToken: "openai" });
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: ["openai", "linear", "ramp"],
});
const { jobs, total } = await ats.getJobs();How to find the Company Slug
- Ashby career boards have URLs like
jobs.ashbyhq.com/<slug>. - Examples:
ramp->https://jobs.ashbyhq.com/ramplinear->https://jobs.ashbyhq.com/linearretool->https://jobs.ashbyhq.com/retool