Job postings read straight from a company's own applicant tracking system — Greenhouse, Le
Job postings read straight from a company's own applicant tracking system — Greenhouse, Lever, Ashby, SmartRecruiters, BambooHR or Recruitee. This is the source that job boards scrape, so there are no duplicates, no expired listings and no aggregator lag. Hiring is a demand signal: which teams a company is growing and where.
10000 (raw units)
price
4
calls / 30d
2
unique payers
2026-09-14
updated
Provider
x402-filings.datalayer.workers.dev · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x917e635b83F0dd7e8172c55EC4EEbb28B734cA85",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "10000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"ats": "greenhouse",
"includeDescription": false,
"limit": 50,
"remoteOnly": false,
"slug": "stripe",
"titleFilter": "engineer"
},
"type": "http"
},
"output": {
"example": {
"company": {
"ats": "greenhouse",
"slug": "stripe"
},
"count": 50,
"jobs": [
{
"department": "Engineering",
"location": "Remote - US",
"postedAt": "2026-08-10",
"remote": true,
"title": "Staff Engineer, Payments",
"url": "https://boards.greenhouse.io/stripe/jobs/123"
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"ats": {
"description": "One of greenhouse, lever, ashby, smartrecruiters, bamboohr, recruitee. Required.",
"examples": [
"greenhouse"
],
"type": "string"
},
"includeDescription": {
"description": "Include full job description text. Default false.",
"examples": [
false
],
"type": "boolean"
},
"limit": {
"description": "Max jobs, 1-200. Default 50.",
"examples": [
50
],
"type": "integer"
},
"remoteOnly": {
"description": "Only remote roles.",
"examples": [
false
],
"type": "boolean"
},
"slug": {
"description": "The company's board slug, from its careers URL. Required.",
"examples": [
"stripe"
],
"type": "string"
},
"titleFilter": {
"description": "Substring match on job title.",
"examples": [
"engineer"
],
"type": "string"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://x402-filings.datalayer.workers.dev/v1/jobs/ats" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://x402-filings.datalayer.workers.dev/v1/jobs/ats");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://x402-filings.datalayer.workers.dev/v1/jobs/ats")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/6075.json, and this resource appears in /discovery/resources and /discovery/search.