Get Scrape Arbeitsagentur Jobs Status
curl --request GET \
--url https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"request_id": "run_ba_abc123",
"status": "COMPLETED",
"result": {
"company": "Bundesagentur für Arbeit",
"url": "https://www.arbeitsagentur.de/jobsuche/suche?angebotsart=1&wo=Berlin&umkreis=25",
"search_urls": [
"https://www.arbeitsagentur.de/jobsuche/suche?angebotsart=1&wo=Berlin&umkreis=25"
],
"total_found": 1240,
"jobs_returned": 25,
"pages_scraped": 1,
"jobs": [
{
"job_title": "Maler (m/w/d)",
"location": "10115 Berlin, BERLIN",
"city": "Berlin",
"country": "Germany",
"job_description": "Wir suchen Maler/Lackierer ...",
"hiring_manager_name": "Olaf Jöken",
"hiring_manager_email": "bewerbung.berlin@stewe.de",
"hiring_manager_phone": "+49 170 1571335",
"job_url": "https://www.arbeitsagentur.de/jobsuche/jobdetail/10001-1003290276-S",
"company_name": "Schowin & Geuge",
"posted_at": "2026-06-26"
}
]
},
"started_at": "2026-06-29T07:30:00.000Z",
"finished_at": "2026-06-29T07:33:00.000Z"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Scrapers
Get Arbeitsagentur job scrape status
Poll the status and results of an Arbeitsagentur job search
GET
/
v1
/
scrape-arbeitsagentur-jobs
/
async
/
{request_id}
Get Scrape Arbeitsagentur Jobs Status
curl --request GET \
--url https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.automindz.co/v1/scrape-arbeitsagentur-jobs/async/{request_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"request_id": "run_ba_abc123",
"status": "COMPLETED",
"result": {
"company": "Bundesagentur für Arbeit",
"url": "https://www.arbeitsagentur.de/jobsuche/suche?angebotsart=1&wo=Berlin&umkreis=25",
"search_urls": [
"https://www.arbeitsagentur.de/jobsuche/suche?angebotsart=1&wo=Berlin&umkreis=25"
],
"total_found": 1240,
"jobs_returned": 25,
"pages_scraped": 1,
"jobs": [
{
"job_title": "Maler (m/w/d)",
"location": "10115 Berlin, BERLIN",
"city": "Berlin",
"country": "Germany",
"job_description": "Wir suchen Maler/Lackierer ...",
"hiring_manager_name": "Olaf Jöken",
"hiring_manager_email": "bewerbung.berlin@stewe.de",
"hiring_manager_phone": "+49 170 1571335",
"job_url": "https://www.arbeitsagentur.de/jobsuche/jobdetail/10001-1003290276-S",
"company_name": "Schowin & Geuge",
"posted_at": "2026-06-26"
}
]
},
"started_at": "2026-06-29T07:30:00.000Z",
"finished_at": "2026-06-29T07:33:00.000Z"
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Poll until
status is COMPLETED or FAILED. The result field is populated on completion.
Page through the returned jobs with the limit (1–50, default 25) and offset query params; the response echoes limit, offset, and has_more.
Polling guidance: Check every 15–30 seconds. Listing-only searches finish quickly; enabling
solve_captcha adds a few seconds per contact-enriched job.Example responses
Queued / running
Queued / running
{
"request_id": "run_ba_abc123",
"status": "RUNNING",
"result": null,
"started_at": "2026-06-29T07:30:00.000Z",
"finished_at": null
}
Completed
Completed
{
"request_id": "run_ba_abc123",
"status": "COMPLETED",
"result": {
"company": "Bundesagentur für Arbeit",
"url": "https://www.arbeitsagentur.de/jobsuche/suche?angebotsart=1&wo=Berlin&umkreis=25",
"search_urls": [
"https://www.arbeitsagentur.de/jobsuche/suche?angebotsart=1&wo=Berlin&umkreis=25"
],
"total_found": 1240,
"jobs_returned": 25,
"pages_scraped": 1,
"jobs": [
{
"job_title": "Maler (m/w/d)",
"location": "10115 Berlin, BERLIN",
"city": "Berlin",
"country": "Germany",
"job_description": "Wir suchen Maler/Lackierer ...",
"hiring_manager_name": "Olaf Jöken",
"hiring_manager_email": "bewerbung.berlin@stewe.de",
"hiring_manager_phone": "+49 170 1571335",
"company_name": "Schowin & Geuge",
"job_url": "https://www.arbeitsagentur.de/jobsuche/jobdetail/10001-1003290276-S",
"posted_at": "2026-06-26"
}
]
},
"started_at": "2026-06-29T07:30:00.000Z",
"finished_at": "2026-06-29T07:33:00.000Z"
}
Failed
Failed
{
"request_id": "run_ba_jkl012",
"status": "FAILED",
"result": null,
"started_at": "2026-06-29T07:30:00.000Z",
"finished_at": "2026-06-29T07:30:09.000Z"
}
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
The run_... id returned by the scrape endpoint.
Query Parameters
Max jobs to return (pagination page size).
Required range:
1 <= x <= 50Number of jobs to skip (pagination offset).
Required range:
x >= 0⌘I