All scrapers
Automotive
AutoScout24 Scraper
autoscout24.com
100% Success rate
4.4s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over
AutoScout24 is one of Europe's biggest vehicle marketplaces, spanning multiple countries and currencies. ScrapeUnblocker renders its listing pages as a buyer would see them and returns the make, model, price and specs for each car, holding a clean 100% across a spread of make searches.
What you can extract
- Make, model and version
- Registration year and mileage
- Price and currency
- Fuel type, gearbox and power
- Seller type, country 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.autoscout24.com%2Flst%2Fbmw&parsed_data=true"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/getPageSource",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"url": "https://www.autoscout24.com/lst/bmw", "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.autoscout24.com/lst/bmw',
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.
Related scrapers
Start scraping this site today
Free tier included. No credit card required to test it.