Allegro product data API
ShopAPIS returns structured Allegro product data — price in PLN, offer status, seller name and rating, delivery cost, the platform’s structured parameter dictionary, EAN/GTIN and stock — as normalized JSON. Allegro is the dominant Western-CEE marketplace, and because most listings are sold by third-party merchants, a single popular product can carry dozens of competing offers at different prices. ShopAPIS resolves the cheapest live offer and the full seller spread for any product across Poland, Czechia and Slovakia.
Allegro is Poland’s e-commerce backbone. It draws ~45M monthly visits, holds roughly 60% of Polish e-commerce, and its GMV neared PLN 70bn in 2025 with 15.2M active Polish buyers (21.1M group-wide) (Allegro Q2 2025 results ). After the €925M Mall Group acquisition, Czech and Slovak catalogs are folding into Allegro.cz.
Why Allegro data is hard to get
Allegro publishes a real REST API, but it serves merchants their own data — not a competitor’s price book. The official Allegro REST API exposes offers, categories, the structured parameter dictionary, seller ratings and delivery for the account that authenticated, gated by OAuth. Reading the live marketplace — every seller’s price on a product, who currently holds the cheapest offer, how stock moves — means parsing the public storefront, which sits behind a Cloudflare/DataDome-class anti-bot layer with medium difficulty. The genuinely hard part is Allegro’s offer model: one product page is a marketplace of independent sellers, each with its own PLN price, condition, delivery cost and rating, and the winning offer rotates. ShopAPIS reconciles those competing offers into a clean array plus a resolved best-price field, so you see the real competitive picture rather than a single scraped number.
Data fields returned
- Pricing — current price, currency (PLN; CZK/EUR on Allegro.cz/.sk), Smart! free-delivery flag.
- Offers — competing seller offers for the same product, each with price, condition and rating.
- Seller — seller name, super-seller badge, rating score and review count.
- Catalog — title, brand, structured parameters (Allegro’s attribute dictionary), category path.
- Availability — in-stock quantity bucket, delivery time and cost.
- Identifiers — Allegro offer ID, EAN/GTIN, product URL.
- Images — full gallery URLs.
Sample response
{
"marketplace": "allegro",
"domain": "allegro.pl",
"country": "PL",
"offer_id": "14328871996",
"identifiers": { "ean": "0195949038204" },
"title": "Apple iPhone 15 128GB Czarny",
"brand": "Apple",
"category": ["Telefony i Akcesoria", "Smartfony i telefony komórkowe"],
"price": { "current": 2899.00, "currency": "PLN", "smart_delivery": true },
"parameters": { "Kolor": "Czarny", "Pamięć wbudowana": "128 GB", "Stan": "Nowy" },
"seller": { "name": "x-kom", "super_seller": true, "rating": 99.2, "review_count": 184230 },
"competing_offers": [
{ "seller": "x-kom", "price": 2899.00, "condition": "new" },
{ "seller": "Media Expert", "price": 2949.00, "condition": "new" },
{ "seller": "RTV_AGD_outlet", "price": 2679.00, "condition": "refurbished" }
],
"availability": "in_stock",
"images": ["https://a.allegroimg.com/original/118e2f/iphone15.jpg"],
"url": "https://allegro.pl/oferta/apple-iphone-15-128gb-14328871996",
"fetched_at": "2026-06-05T09:42:00Z"
}Markets and domains covered
| Domains | Markets | Currency | Scale |
|---|---|---|---|
| allegro.pl | Poland | PLN | ~45M visits/mo, ~PLN 70bn GMV, ~60% of PL e-commerce |
| allegro.cz | Czechia | CZK | ~10M visits/mo, absorbing Mall.cz / CZC |
| allegro.sk | Slovakia | EUR | Group expansion via Mall acquisition |
Use cases
- Buy-box and best-offer tracking — watch which seller holds the cheapest live PLN offer on a product and how often it flips. See competitive intelligence.
- Price monitoring across PL/CZ/SK — follow one EAN as Czech and Slovak catalogs merge into Allegro. See price monitoring.
- MAP compliance — catch resellers undercutting minimum advertised price across the Allegro seller pool. See MAP compliance.
- Catalog enrichment — pull Allegro’s structured parameter dictionary and EAN to enrich product records. See catalog enrichment.