Unlock Breezy HR job data for your platform. Access jobs from thousands of employers through our comprehensive API and Job Feeds, or integrate directly with Breezy HR's official AP
Breezy HR does not have a public API to retrieve jobs. Clients are able to access job postings via the Breezy API. Accessing this API requires an authorization token. To retrieve jobs, you can use the following endpoint
GET v3/company/{company_id}/positions
The API will return a JSON containing all relevant job posting fields. The API does not support searching on job titles or descriptions.
Curl
curl -H "Content-Type: application/json" -H "Authorization: 00000000-0000-0000-0000-000000000000" https://api.breezy.hr/v3/company/000000000000/positions?state=published
PowerShell
$headers = @{
'Content-Type' = 'application/json'
'Authorization' = '00000000-0000-0000-0000-000000000000'
}
$response = Invoke-RestMethod -Uri 'https://api.breezy.hr/v3/company/000000000000/positions?state=published' -Headers $headers