Endpoint Playground
Test Crawlora's Personio 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/personio/feed?company=getquin" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| company | string | Yes | getquin | Personio 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": "personio",
"company": "getquin",
"count": 8,
"total": 8,
"jobs": [
{
"provider": "personio",
"id": "2334688",
"title": "Business Development Manager (f/m/d)",
"company": "getquin",
"department": "Business Development",
"location": "Berlin",
"remote": false,
"employment_type": "full-time",
"url": "https://getquin.jobs.personio.de/job/2334688",
"apply_url": "https://getquin.jobs.personio.de/job/2334688",
"posted_at": "2025-09-12T18:32:55Z",
"description_html": "<h3>Was wir tun</h3>\n<p>ā¦</p>",
"description_text": "ā¦"
}
],
"source_url": "https://getquin.jobs.personio.de/xml"
}
}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 Personio board feed (XML), normalized to the shared Job shape with detail inline, optionally filtered by department, location, or remote. The company is the Personio subdomain from its careers URL https://{company}.jobs.personio.de/. Credential-free public ATS feed.
{
"code": 200,
"msg": "OK",
"data": {
"provider": "personio",
"company": "getquin",
"count": 8,
"total": 8,
"jobs": [
{
"provider": "personio",
"id": "2334688",
"title": "Business Development Manager (f/m/d)",
"company": "getquin",
"department": "Business Development",
"location": "Berlin",
"remote": false,
"employment_type": "full-time",
"url": "https://getquin.jobs.personio.de/job/2334688",
"apply_url": "https://getquin.jobs.personio.de/job/2334688",
"posted_at": "2025-09-12T18:32:55Z",
"description_html": "<h3>Was wir tun</h3>\n<p>ā¦</p>",
"description_text": "ā¦"
}
],
"source_url": "https://getquin.jobs.personio.de/xml"
}
}curl "https://api.crawlora.net/api/v1/jobs/personio/feed?company=<company>" \
-H "x-api-key: $CRAWLORA_API_KEY"