λats-sdk
Adapters

Workday

Extract enterprise job postings from Workday CXS endpoints.

Workday Adapter

Workday powers the career platforms for Fortune 500 enterprises including Walmart, Salesforce, Adobe, Target, and Bank of America.

Format: tenant/site

Workday URLs use a dual-segment identifier consisting of the company tenant name and the specific external site name:

https://<tenant>.wd3.myworkdayjobs.com/en-US/<site>/jobs

Pass this as tenant/site (or a full Workday career URL):

Direct Adapter Usage

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

const walmart = workday({
  boardToken: "walmart/WalmartExternal",
});

const { jobs, total } = await walmart.getJobs({
  workplace: "remote",
});

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

Auto-Discovery via Unified Client

import { createAtsClient } from "ats-sdk";

const ats = createAtsClient({
  companies: [
    "https://walmart.wd5.myworkdayjobs.com/en-US/WalmartExternal",
    "nvidia",
  ],
});

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

On this page