gazetkowo.pl APIgazetkowo.pl ↗
Access promotional products, retail leaflets, and store data from Gazetkowo.pl via 6 endpoints. Search products by keyword, browse flyers, and filter by retailer.
curl -X GET 'https://api.parse.bot/scraper/8113a919-68fd-4a8f-83ab-ae0980d250ec/search_products?query=mleko&sort_by_price=true' \ -H 'X-API-Key: $PARSE_API_KEY'
Search for promotional products by keyword. Returns matching products with price, retailer, and validity dates. Results can be sorted by price ascending.
| Param | Type | Description |
|---|---|---|
| queryrequired | string | Search keyword for promotional products (e.g. 'mleko', 'chleb') |
| postcode | string | Polish postal code for location scoping (format: XX-XXX) |
| sort_by_price | boolean | Sort results by price ascending |
{
"type": "object",
"fields": {
"total": "integer total number of products returned",
"products": "array of product objects with id, name, price, old_price, start_date, end_date, image_url, retailer, newspaper_id, and slug"
},
"sample": {
"data": {
"total": 62,
"products": [
{
"id": "019dec3a-2b7d-72b1-9d58-54a97bfcad33",
"name": "Mleko UHT 3,2%",
"slug": "mleko-uht-32-2y126cfjz5apv4iftapi1pqsde8pzkuqfofdnles5qaxaluzqmnncmx0m",
"price": 1.49,
"end_date": "2026-05-06 23:59:59",
"retailer": {
"id": "67331532-81bb-41ef-be67-44bc5120af72",
"name": "Lidl",
"slug": "lidl"
},
"image_url": "https://cdn1.promotons.com/resize?fileName=staging/gazetkowo/newspapers/019deb07-6b82-73df-9e93-29ed42afab39/img-8.jpg&c_tp=55&c_lp=3&c_wp=82&c_hp=37",
"old_price": 3.99,
"start_date": "2026-05-04 00:00:00",
"newspaper_id": "019deb0c-aa20-70cd-aec2-a078318a54a3"
}
]
},
"status": "success"
}
}About the gazetkowo.pl API
The Gazetkowo.pl API exposes 6 endpoints for accessing promotional flyer data from Poland's major retailers. Using search_products, you can query promotional items by keyword and receive structured results including price, old_price, validity dates, retailer identity, and product slugs. The API also covers leaflet browsing, store listings, and individual product detail retrieval — all scoped to active or current promotional periods.
Product Search and Detail
The search_products endpoint accepts a query string (e.g. 'mleko', 'chleb') and returns an array of matching promotional products. Each product object includes id, name, price, old_price, start_date, end_date, image_url, slug, and a nested retailer object. You can optionally pass a postcode (format XX-XXX) to scope results geographically, and set sort_by_price to true to order results by ascending price. For full detail on a single item, get_product_detail accepts a slug (either the origin slug or the full slug from search results) plus a retailer_id UUID and returns the newspaperProduct object with fields like originSlug, oldPrice, startAt, endAt, and imageUrl. Note: expired products return a not-found error rather than stale data.
Store and Leaflet Access
list_stores returns all retailers with active promotional offers. Each retailer object includes a UUID id, slug, retailerCategoryId, newspapersCount, and currentlyActiveNewspapersIds — which is the primary input surface for downstream leaflet calls. get_store_leaflets takes a retailer_id and returns the newspapersWithoutSubcategory object, whose elements array contains leaflets with id, customName, startAt, endAt, newspaperCurrentOrder, coverImage, images, and retailer context.
Leaflet Detail and Latest Listings
get_leaflet_detail accepts an order value (the newspaperCurrentOrder field from get_store_leaflets) and a retailer_slug (e.g. 'lidl', 'biedronka', 'kaufland'). It returns the full newspaper object including all page images as an array, plus tagsWithCategory and tagsWithoutCategory arrays that group products tagged in the leaflet. get_latest_leaflets lists recent leaflets across all retailers with pagination via page and per_page parameters, and supports filtering by retailer_category_id — a UUID drawn from the retailerCategoryId field in list_stores results.
- Track price drops on grocery items by comparing
priceandold_pricefields fromsearch_productsacross polling intervals. - Build a leaflet browser for Polish retail chains by paginating
get_latest_leafletsand renderingcoverImagethumbnails. - Aggregate current promotional product availability by retailer using
list_storesandget_store_leafletstogether. - Filter promotional flyers by store category (e.g. supermarkets vs. electronics) using
retailer_category_idinget_latest_leaflets. - Retrieve all page images from a specific leaflet using
get_leaflet_detailwithorderandretailer_sluginputs. - Monitor product validity windows by reading
start_dateandend_datefromsearch_productsto detect expiring deals. - Build a postcode-aware product search tool using the
postcodeparameter insearch_productsto scope results by location.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Gazetkowo.pl have an official developer API?+
What does `get_product_detail` return, and what happens with expired products?+
get_product_detail returns a newspaperProduct object with fields including id, name, slug, originSlug, price, oldPrice, imageUrl, retailer, startAt, and endAt. Products that are past their promotion end date return a not-found error rather than a result with stale pricing data, so results can be treated as current.Can I filter `search_products` results by retailer or category?+
search_products endpoint supports filtering by postcode and sorting by price, but does not currently expose a retailer or category filter parameter. The retailer object in each result includes id and slug fields, so client-side filtering by retailer is straightforward. You can fork this API on Parse and revise it to add a server-side retailer filter if needed.Does the API expose historical promotional data or only current offers?+
get_product_detail, and list_stores returns retailers with active offers. Historical pricing trends or archival leaflets are not covered. You can fork this API on Parse and revise it to add an archival endpoint if the underlying data becomes available.How does leaflet pagination work in `get_latest_leaflets`?+
get_latest_leaflets accepts page (page number) and per_page (results per page) as optional integer inputs. Results are nested under newspapers.elements, where each element includes id, customName, startAt, endAt, coverImage, retailer, and retailerCategory. Filtering by store type is possible via the retailer_category_id parameter, which accepts a UUID from the retailerCategoryId field in list_stores results.