All scrapers
Real estate
SeLoger Scraper
seloger.com
100% Success rate
4.2s Avg response
DataDome Protection
1,000 calls Measured over
SeLoger is one of France's largest property portals and sits behind DataDome. ScrapeUnblocker renders it in a real browser, harvests the DataDome clearance once and replays it fleet-wide, so a full 1,000-call run holds a clean 100% at around four seconds a page. Every listing comes back with the price, surface and location a buyer or renter would see.
What you can extract
- Property type and listing title
- Price and price per square metre
- Surface area, room and bedroom count
- City, arrondissement or neighbourhood
- Listing agency, photos and detail 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.seloger.com%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.seloger.com/", "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.seloger.com/',
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.