Researches job postings, hiring signals, and freelance gigs via the Crawlora API — Indeed, Google/Amazon/Apple/Meta/Tesla careers sites, any company's ATS board (Greenhouse, Lever, Workday, SmartRecruiters, Ashby, and more), plus Upwork and Fiverr — returning clean JSON. Use when the user wants to search job postings, see what a specific company is hiring for, aggregate hiring signals for a company, or research freelance gigs and sellers.
编程
ats-job-boards-research
试用Fetches any company's job openings straight from its Applicant Tracking System (ATS) via the Crawlora API — Greenhouse, Lever, Workday, Ashby, SmartRecruiters, Workable, Personio, Recruitee, iCIMS, Oracle Recruiting, Rippling, Pinpoint, Eightfold, Gem, UKG, and Teamtailor — returning clean JSON. Use when the user wants every open role from a specific company's ATS-hosted career page, a single job posting's full detail, or a hiring-velocity snapshot for a company, given its ATS platform and company/board slug.
它能做什么
Fetches any company's job openings straight from its Applicant Tracking System (ATS) via the Crawlora API — Greenhouse, Lever, Workday, Ashby, SmartRecruiters, Workable, Personio, Recruitee, iCIMS, Oracle Recruiting, Rippling, Pinpoint, Eightfold, Gem, UKG, and Teamtailor — returning clean JSON. Use when the user wants every open role from a specific company's ATS-hosted career page, a single job posting's full detail, or a hiring-velocity snapshot for a company, given its ATS platform and company/board slug.
技能文档
ATS job board research
Pull a company's live openings directly from its ATS-hosted career page —
Greenhouse, Lever, Workday, Ashby, and 12 more platforms — as normalized JSON
from the Crawlora API, no scraping career pages by hand. This is for
companies that host their own ATS-backed careers site, not aggregator search
(see the job-market-research skill for Indeed/Google Jobs) and not the
handful of big-tech-specific skills (Google/Amazon/Apple/Meta/Tesla Jobs).
When to use this skill
- "Pull every open role from ``'s Greenhouse/Lever/Workday board."
- "What is `` currently hiring for on Ashby / SmartRecruiters / Workable?"
- "Get the full description for this one job posting I found on ``'s careers page."
- "Is `` scaling headcount?" — hiring-velocity snapshot from their ATS board.
- "Which ATS does `` use, and what's their board slug?"
- "Diff new postings on ``'s board week over week."
Setup (one-time)
- Get a free Crawlora API key (2,000 credits/mo, no card) at https://crawlora.net.
export CRAWLORA_API_KEY=sk_your_key_here- All requests:
x-api-key: $CRAWLORA_API_KEYagainsthttps://api.crawlora.net/api/v1. Missing/invalid key →401.
How it works
Every platform follows the same two-call shape: a board/list endpoint
(all open postings, often with detail inline) and a job-detail endpoint
(one posting's full HTML/text description), both keyed by the company's own
slug from its careers URL — not its public brand name. jobs/company-search
probes the slug-only platforms for you when you don't already know which ATS
a company uses.
| Platform | Slug param(s) | List | Detail |
|---|---|---|---|
| Greenhouse | token | /jobs/greenhouse/board | /jobs/greenhouse/job |
| Lever | company | /jobs/lever/postings | /jobs/lever/posting |
| Ashby | org | /jobs/ashby/board | (inline) |
| Workday | tenant + datacenter + site | /jobs/workday/board | /jobs/workday/job |
| SmartRecruiters | company | /jobs/smartrecruiters/postings | /jobs/smartrecruiters/posting |
| Workable | company | /jobs/workable/postings | /jobs/workable/posting |
| Personio | company | /jobs/personio/feed | (inline) |
| Recruitee | company | /jobs/recruitee/offers | /jobs/recruitee/offer |
| iCIMS | domain | /jobs/icims/board | /jobs/icims/job |
| Oracle Recruiting | host + site | /jobs/oracle/board | /jobs/oracle/job |
| Rippling | company | /jobs/rippling/board | /jobs/rippling/job |
| Pinpoint | company | /jobs/pinpoint/board | (inline) |
| Eightfold | tenant + domain | /jobs/eightfold/board | /jobs/eightfold/job |
| Gem | company | /jobs/gem/board | (inline) |
| UKG (Pro Recruiting) | tenant + board | /jobs/ukg/board | (inline, brief) |
| Teamtailor | company | /jobs/teamtailor/jobs | (inline) |
Cross-cutting endpoints:
/jobs/company-search— probe aslugacross Greenhouse, Lever, Ashby, SmartRecruiters, Workable, Recruitee, Rippling, Teamtailor, and Pinpoint at once and report where it resolves (Workday excluded — needs tenant+datacenter+site, not a plain slug)./jobs/hiring-signals— aggregate any one platform's board into a headcount-growth snapshot (open-role total, department/location/title breakdowns, remote share, roles new in the last 7/30 days) in one call. Passprovider(the ATS name) plus that provider's own slug params.
Full endpoint list, methods, and params: reference/endpoints.md.
Calling the API
# Greenhouse — list a board, then pull one job's full description:
scripts/crawlora.sh /jobs/greenhouse/board token=stripe | jq '.jobs | length'
scripts/crawlora.sh /jobs/greenhouse/job token=stripe id=1234567 | jq '.'
# Lever — list postings filtered by department:
scripts/crawlora.sh /jobs/lever/postings company=netflix department=Engineering | jq '.'
# Workday — needs tenant + datacenter + site from the careers URL:
scripts/crawlora.sh /jobs/workday/board tenant=nike datacenter=wd5 site=nikeinc | jq '.'
# Hiring-velocity snapshot for an Ashby-hosted board:
scripts/crawlora.sh /jobs/hiring-signals provider=ashby org=ramp | jq '.'
Raw curl fallback:
curl -fsS -H "x-api-key: $CRAWLORA_API_KEY" \
"https://api.crawlora.net/api/v1/jobs/smartrecruiters/postings?company=Visa" | jq '.'
Endpoint reference
See reference/endpoints.md for all 28 endpoints, their HTTP methods, and full param lists.
Examples
- "What is `` hiring for right now?" — if the platform is
known, call its board endpoint directly (e.g.
/jobs/greenhouse/board token=); otherwise resolve it first with/jobs/company-search slug=. - "Is `` scaling?" —
/jobs/hiring-signalswith the rightprovider+ slug params for a velocity summary (new roles in last 7/30 days, department mix), then the raw board endpoint for the role-by-role detail behind it. - Competitor hiring watch across ATS platforms: pull the ATS boards of 3-4 competitors (mixing Greenhouse, Lever, Workday, whichever each uses) on a schedule and diff new postings between runs.
Notes & limits
- Credits / pay-on-success: billed only on
2xx; free tier 2,000 credits/mo. Key at https://crawlora.net. - Public data only — public postings/boards; respect each source's terms.
- Security: key lives in
CRAWLORA_API_KEYonly — never hardcode, query-param, or commit it. - You need to already know which ATS a company uses and its board slug
(not its public brand name) before calling a platform-specific endpoint —
use
/jobs/company-searchto resolve it when you don't. This skill does not do fuzzy company-name lookup or cross-platform discovery beyond that one probe endpoint. - Results are paginated on most board/list endpoints (
limit/offsetorpage) — walk the full list for a complete pull.
相关技能
Search Indeed job postings, pull one posting in full with its original ATS link, and read employer profiles and employee reviews. 4 endpoints, 2 credits each, structured JSON for recruiting and labour-market research.
Collect Indeed Job Listings data and return results
Collect Indeed Companies Info data and return results
Searches Indeed job postings and pulls single job listings via the Crawlora API — keyword + location search, location autocomplete, and job detail by job key — returning clean JSON. Use when the user wants to search Indeed for jobs, look up location suggestions for an Indeed search, or fetch the full detail of a specific Indeed posting.
Searches Google's public careers site (careers.google.com) via the Crawlora API and pulls single job postings by id, returning clean JSON. Use when the user wants to search Google Jobs, see what roles Google is hiring for in a location, or pull the full detail of a specific Google Jobs posting.