All scrapers

Automotive

Otomoto Scraper

otomoto.pl

100% Success rate
4.8s Avg response
Cloudflare Protection
1,000 calls Measured over

Otomoto is Poland's biggest vehicle marketplace and sits behind Cloudflare. ScrapeUnblocker clears the Cloudflare challenge once, harvests the cf_clearance cookie and replays it fleet-wide over curl_cffi, so a full 1,000-call run holds 100% at under five seconds a page. Each listing returns the make, model, price and specs a buyer would compare.

What you can extract

  • Make, model and trim
  • Registration year and mileage
  • Price and currency
  • Fuel type, gearbox and engine capacity
  • Seller type, 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.otomoto.pl%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.otomoto.pl/", "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.otomoto.pl/',
  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.