λats-sdk
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

  1. Ashby career boards have URLs like jobs.ashbyhq.com/<slug>.
  2. Examples:
    • ramp -> https://jobs.ashbyhq.com/ramp
    • linear -> https://jobs.ashbyhq.com/linear
    • retool -> https://jobs.ashbyhq.com/retool

On this page