Unlock Greenhouse job data for your platform. Access jobs from thousands of employers through our comprehensive API and Job Feeds, or integrate directly with Greenhouse's official API.
Greenhouse has a simple public API that allows anyone to retrieve jobs from Greenhouse clients. To retrieve jobs, you can use the following endpoint:
GET https://api.greenhouse.io/v1/boards/{clientname}/jobs?content=true
The API will return a JSON containing most relevant job posting fields. Filtering or searching is not possible with this endpoint. More advanced endpoints are available for Greenhouse customers, which can be accessed via the Greenhouse Harvest API.
curl -X GET "https://api.greenhouse.io/v1/boards/{clientname}/jobs?content=true"
PowerShell
$response = Invoke-RestMethod -Uri "https://api.greenhouse.io/v1/boards/{clientname}/jobs?content=true"