curl --request POST \
--url https://api.scrapeunblocker.com/vehicles/autoscout24 \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/vehicles/autoscout24"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/vehicles/autoscout24', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Scrape AutoScout24 car listings
Searches AutoScout24 (Europe’s largest car marketplace) and returns the listings as JSON: title, make, model, condition (used / new), price (raw + formatted + label), mileageKm, firstRegistration, fuel, transmission, powerKw/powerHp, engineCc, location (country / zip / city / street), seller (type, name, phones) and images. Filter with fuel, transmission, price_from/price_to, year_from/year_to, mileage_to, power_from/power_to (power_unit) and country, sort with sort, and collect up to max_results across pages.
curl --request POST \
--url https://api.scrapeunblocker.com/vehicles/autoscout24 \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/vehicles/autoscout24"
headers = {"x-scrapeunblocker-key": "<api-key>"}
response = requests.post(url, headers=headers)
print(response.text)const options = {method: 'POST', headers: {'x-scrapeunblocker-key': '<api-key>'}};
fetch('https://api.scrapeunblocker.com/vehicles/autoscout24', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Your ScrapeUnblocker API key. Apply on every request.
Query Parameters
Make slug, e.g. 'bmw', 'volkswagen', 'audi'.
Model slug, e.g. 'x5', 'golf'. Requires make.
Fuel: gasoline, diesel, electric, hybrid, lpg, cng (or a raw AutoScout24 code).
Transmission: automatic, manual, semi-automatic.
Minimum price in EUR.
x >= 0Maximum price in EUR.
x >= 0Earliest first-registration year.
x >= 1900Latest first-registration year.
x >= 1900Maximum mileage in km.
x >= 0Minimum power (unit set by power_unit).
x >= 0Maximum power (unit set by power_unit).
x >= 0Power unit for the power filters: 'kw' or 'hp'.
Seller country (ISO-2), e.g. 'DE', 'IT', 'NL'.
Ordering: relevance, price_asc, price_desc, newest, mileage_asc, year_desc, power_desc.
How many listings to collect across pages (~20 per page, max 400).
1 <= x <= 4001-based results page to start from.
1 <= x <= 20Exit-IP country (ISO-2). Leave blank for a smart exit.
Response
JSON with a listings array plus totals.

