All scrapers

Marketplaces

Allegro

allegro.pl

95.5% Success rate
14s Avg response
DataDome Protection
6,000 calls Measured over

Allegro is the dominant e-commerce platform in Poland and a required source for any Central European price study. DataDome protects it; our run returned 95.5% verified content against a 66.98% field average.

What you can extract

  • Offer title, ID and category
  • Price in PLN, Smart delivery flag
  • Seller name and rating
  • Stock quantity and sold count
  • Search and category listings

How to scrape it

curl -X POST \
  -H "X-ScrapeUnblocker-Key: $SU_API_KEY" \
  "https://api.scrapeunblocker.com/getPageSource?url=https%3A%2F%2Fallegro.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://allegro.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://allegro.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.