All scrapers

Automotive

mobile.de Scraper

mobile.de

100% Success rate
6.3s Avg response
Akamai Protection
1,000 calls Measured over

mobile.de is Germany's largest vehicle marketplace and one of the hardest Akamai targets to hold at volume. ScrapeUnblocker runs it through a warm browser pool that keeps its Akamai clearance alive, returning the make, model, price and specs for each listing at a clean 100%.

What you can extract

  • Make, model and variant
  • First registration year and mileage
  • Price and currency
  • Fuel type, gearbox and power (kW/PS)
  • Dealer or private seller, location and listing URL

How to scrape it

curl -X POST \
  -H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
  "https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.mobile.de%2Ffahrzeuge%2Fsearch.html&parsed_data=true"
import requests

resp = requests.post(
    "https://api.scrapeunblocker.com/getPageSource",
    headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
    params={"url": "https://www.mobile.de/fahrzeuge/search.html", "parsed_data": True},
)
print(resp.text)
import { ScrapeUnblockerClient } from 'scrapeunblocker';

const su = new ScrapeUnblockerClient({ apiKey: process.env.SU_API_KEY });

const results = await su.getPageSource({
  url: 'https://www.mobile.de/fahrzeuge/search.html',
  parsedData: true,
});
console.log(results);

Requests are POST and take their parameters in the query string. Browser rendering always happens - there is no flag to enable.

Read the API docs

Related scrapers

Start scraping this site today

Free tier included. No credit card required to test it.