All scrapers
Marketplaces
OLX Scraper
olx.pl
100% Success rate
19.3s Avg response
Bot detection + rate limiting Protection
1,000 calls Measured over
OLX is a leading classifieds marketplace across Central Europe and beyond, covering goods, vehicles and property. ScrapeUnblocker renders its listing and search pages as a buyer would see them and returns the price, condition and location for each ad, holding a clean 100% across a spread of search terms.
What you can extract
- Listing title and category
- Price and currency
- Item condition and description
- Seller type and location
- Photos 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.olx.pl%2Foferty%2Fq-laptop%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.olx.pl/oferty/q-laptop/", "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.olx.pl/oferty/q-laptop/',
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.