How to integrate Greenhouse jobs
Fetch Greenhouse jobs for free from their public job board endpoints. Just grab the job board URLs from our catalog and you're ready to go.
Company job feeds
6,513
Jobs
178,522
New feeds (30 days)
+212
Pull verified feed_url values from our catalog — each row points at one company's public Greenhouse board. You don't need to guess {account} tokens yourself.
On your own schedule, HTTP GET each feed URL and parse the jobs array into your job store. Map fields like title, absolute_url, and updated_at into your schema.
Re-sync when new boards appear in the catalog or old feeds retire. The catalog tracks lifecycle changes; your worker just follows the URLs we validate.
New to the catalog workflow? Start with Getting started.
Fetch jobs from the public API
Each board exposes a JSON feed. Replace {account} with the board token from our catalog — it's the same segment that appears in the company's Greenhouse careers URL.
https://boards-api.greenhouse.io/v1/boards/{account}/jobscurl "https://boards-api.greenhouse.io/v1/boards/{account}/jobs"The response is a JSON object with a jobs array and meta.total. Each job includes id, internal_job_id, title, location.name, updated_at, absolute_url, and optional metadata custom fields. Job description HTML is omitted unless you add ?content=true to the request URL.
{
"jobs": [
{
"id": 123456,
"internal_job_id": 789012,
"title": "Product Designer",
"updated_at": "2026-03-15T08:00:00Z",
"location": { "name": "Berlin, Germany" },
"absolute_url": "https://boards.greenhouse.io/example-co/jobs/123456",
"metadata": [
{ "id": 1, "name": "Department", "value": "Design", "value_type": "single_select" }
]
}
],
"meta": { "total": 1 }
}boards-api.greenhouse.io serves the JSON API; public career pages live on boards.greenhouse.io with different URLs. Prospect posts may have a null internal_job_id, and custom fields in metadata vary per employer.
Full field reference: Greenhouse Job Board API.
Pricing
Get the full Greenhouse feed catalog
Get access to 6,513 validated job feeds with 178,522 jobs on Greenhouse and other ATS platforms in our catalog via API or CSV export.