Job search — find current openings by role, skill or company with location, salary, schedu
Job search — find current openings by role, skill or company with location, salary, schedule, qualifications and direct application links.
50000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-15
updated
Provider
jobs.use.x402atlas.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:137",
"payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
"asset": "0x3c499c542cEF5E3811e1192ce70d8cC03d5c3359",
"amount": "50000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "eip155:42161",
"payTo": "0x8C128f1Ee62Bb5e47867CfbAe2ad89be325Df1b2",
"asset": "0xaf88d065e77c8cC2239327C5EDb3A432268e5831",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"category": "search",
"info": {
"input": {
"method": "GET",
"queryParams": {
"country": "us",
"language": "en",
"location": "New York, NY",
"query": "software engineer"
},
"type": "http"
},
"output": {
"example": {
"jobs": [
{
"apply_options": [
{
"link": "https://example.com/careers/software-engineer",
"title": "Apply on company site"
}
],
"company": "Example Technology",
"description": "Build reliable software products with a collaborative engineering team.",
"location": "New York, NY",
"position": 1,
"posted_at": "1 day ago",
"salary": "$140,000–$180,000 a year",
"schedule_type": "Full-time",
"source": "Company careers",
"title": "Software Engineer"
}
],
"query": "software engineer",
"searched_at": "2026-07-29T12:00:00Z"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {
"country": {
"description": "Two-letter country code",
"pattern": "^[A-Za-z]{2}$",
"type": "string"
},
"language": {
"description": "Two-letter result language",
"pattern": "^[A-Za-z]{2}$",
"type": "string"
},
"location": {
"description": "City, region or country used to localize results",
"maxLength": 120,
"type": "string"
},
"query": {
"description": "Role, skill, company or other free-text job search",
"maxLength": 200,
"minLength": 1,
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"jobs": {
"items": {
"properties": {
"apply_options": {
"items": {
"properties": {
"link": {
"type": "string"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"company": {
"type": "string"
},
"description": {
"type": "string"
},
"highlights": {
"items": {
"properties": {
"items": {
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
}
},
"type": "object"
},
"type": "array"
},
"location": {
"type": "string"
},
"position": {
"type": "integer"
},
"posted_at": {
"type": "string"
},
"qualifications": {
"type": "string"
},
"salary": {
"type": "string"
},
"schedule_type": {
"type": "string"
},
"source": {
"description": "Original job board or employer source",
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title"
],
"type": "object"
},
"type": "array"
},
"next_page_token": {
"type": "string"
},
"note": {
"description": "Present only when query is empty and the sample is returned",
"type": "string"
},
"query": {
"type": "string"
},
"searched_at": {
"format": "date-time",
"type": "string"
}
},
"required": [
"query",
"searched_at",
"jobs"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
},
"tags": [
"jobs",
"employment",
"hiring",
"careers",
"job-search",
"openings",
"recruiting"
]
}
}Use it
curl
curl "https://jobs.use.x402atlas.com/search" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://jobs.use.x402atlas.com/search");
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://jobs.use.x402atlas.com/search")
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/5356.json, and this resource appears in /discovery/resources and /discovery/search.