Endpoint Playground
Test Crawlora's Teamtailor Board Feed API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/jobs/teamtailor/jobs?company=oatly" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | oatly | Teamtailor subdomain (careers URL) |
| department | string | No | Filter: department contains | |
| location | string | No | Filter: location contains | |
| remote | boolean | No | Filter by remote (true or false) |
{
"code": 200,
"msg": "OK",
"data": {
"provider": "teamtailor",
"company": "Oatly AB",
"count": 17,
"total": 17,
"jobs": [
{
"provider": "teamtailor",
"id": "b3c6bea6-98a2-4014-8257-ed8fd2829699",
"title": "Nutrition Specialist (Global Regulatory & Corporate Affairs)",
"company": "Oatly AB",
"location": "London, United Kingdom, GB",
"remote": false,
"url": "https://oatly.teamtailor.com/jobs/8023926-nutrition-specialist-global-regulatory",
"apply_url": "https://oatly.teamtailor.com/jobs/8023926-nutrition-specialist-global-regulatory",
"posted_at": "2026-07-06T11:25:03Z",
"description_html": "<p>ā¦</p>",
"description_text": "ā¦"
}
],
"source_url": "https://oatly.teamtailor.com/jobs.json"
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Lists a company's public Teamtailor board feed (JSON Feed), normalized to the shared Job shape with detail inline, optionally filtered by department, location, or remote. The company is the Teamtailor subdomain from its careers URL https://{company}.teamtailor.com/. Credential-free public ATS feed.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "teamtailor",
"company": "Oatly AB",
"count": 17,
"total": 17,
"jobs": [
{
"provider": "teamtailor",
"id": "b3c6bea6-98a2-4014-8257-ed8fd2829699",
"title": "Nutrition Specialist (Global Regulatory & Corporate Affairs)",
"company": "Oatly AB",
"location": "London, United Kingdom, GB",
"remote": false,
"url": "https://oatly.teamtailor.com/jobs/8023926-nutrition-specialist-global-regulatory",
"apply_url": "https://oatly.teamtailor.com/jobs/8023926-nutrition-specialist-global-regulatory",
"posted_at": "2026-07-06T11:25:03Z",
"description_html": "<p>ā¦</p>",
"description_text": "ā¦"
}
],
"source_url": "https://oatly.teamtailor.com/jobs.json"
}
}curl "https://api.crawlora.net/api/v1/jobs/teamtailor/jobs?company=<company>" \
-H "x-api-key: $CRAWLORA_API_KEY"