Adapters
BambooHR
Extract public postings from BambooHR career boards.
BambooHR Adapter
BambooHR powers HR and recruitment for thousands of small and medium businesses.
Usage
Direct Adapter Import
import { bamboohr } from "ats-sdk/bamboohr";
const adapter = bamboohr({ boardToken: "companyname" });
const { jobs, total } = await adapter.getJobs();Auto-Discovery via Unified Client
import { createAtsClient } from "ats-sdk";
const ats = createAtsClient({
companies: ["https://companyname.bamboohr.com/careers"],
});
const { jobs, total } = await ats.getJobs();How to find the Subdomain
BambooHR career pages are hosted on <subdomain>.bamboohr.com/careers. The subdomain part before .bamboohr.com is your identifier.