Unlock Teamtailor job data for your platform. Access jobs from thousands of employers through our comprehensive API and Job Feeds, or integrate directly with Teamtailor's official API.
Teamtailor has a public XML feed, but it’s up to the client to active this and share the URL. More advanced endpoints are available for Teamtailor customers, which can be accessed via the Teamtailor Client API. You can use the following endpoint to retrieve jobs:
GET https://api.teamtailor.com/v1/jobs
The API will return JSON containing all relevant job posting fields and filtering or searching is possible.
Curl
curl --location 'https://api.teamtailor.com/v1/jobs' --header 'Authorization: Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9' --header 'X-Api-Version: 20240404'
PowerShell
$headers=@{}
$headers.Add("Authorization", "Token token=od71S1zmxWetVvzz6ovSeznEPb-OdsZZSX9EeBi9")
$headers.Add("X-Api-Version", "20240404")
$response = Invoke-WebRequest -Uri 'https://api.teamtailor.com/v1/jobs' -Method GET -Headers $headers