curl --request POST \
--url https://api.scrapeunblocker.com/vehicles/mobile-de \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/vehicles/mobile-de"
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/mobile-de', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Scrape mobile.de car listings
Searches mobile.de (Germany’s largest car marketplace) and returns the result-list cards as JSON: title, makeModel, price (numeric EUR) plus priceFormatted, firstRegistration, mileage, power (kw + ps), fuel, and the detail id + url. Pass a friendly make name (or a raw make_id), and filter with price_min/price_max, year_min, mileage_max and fuel; collect up to max_results across pages. model is accepted as free text but is not used to filter (mobile.de needs a numeric model id we do not resolve).
curl --request POST \
--url https://api.scrapeunblocker.com/vehicles/mobile-de \
--header 'x-scrapeunblocker-key: <api-key>'import requests
url = "https://api.scrapeunblocker.com/vehicles/mobile-de"
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/mobile-de', 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 name, e.g. 'bmw', 'volkswagen', 'audi'. Required unless make_id is given.
Raw mobile.de numeric make id, overrides make (e.g. 3500 = BMW).
x >= 1Model name (free text). Model-id resolution is not available, so it is used only as a note; results are not filtered by model.
Minimum price in EUR.
x >= 0Maximum price in EUR.
x >= 0Earliest first-registration year (YYYY).
x >= 1900Maximum mileage in km.
x >= 0Fuel: petrol, diesel, electric, hybrid (or a raw mobile.de code).
How many listings to collect across pages (~20 per page).
1 <= x <= 5001-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 counts.

