All scrapers
Real estate
ImmobilienScout24
immobilienscout24.de
99.7% Success rate
12.2s Avg response
Imperva Incapsula Protection
6,000 calls Measured over
ImmobilienScout24 is where German property data lives. Incapsula fronts it with a JavaScript challenge that has to be solved per session, which is where most generic proxy setups fail.
What you can extract
- Address, district and postcode
- Cold rent, warm rent and purchase price
- Living space, rooms and floor
- Energy certificate details
- Listing agent and availability date
How to scrape it
curl -X POST \
-H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
"https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fwww.immobilienscout24.de%2F&parsed_data=true"import requests
resp = requests.post(
"https://api.scrapeunblocker.com/getPageSource",
headers={"X-ScrapeUnblocker-Key": SU_API_KEY},
params={"url": "https://www.immobilienscout24.de/", "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.immobilienscout24.de/',
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.