Discover/gazetkowo.pl API
live

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.

Endpoints
6
Updated
14d ago
Try it
Search keyword for promotional products (e.g. 'mleko', 'chleb')
Polish postal code for location scoping (format: XX-XXX)
Sort results by price ascending
api.parse.bot/scraper/8113a919-68fd-4a8f-83ab-ae0980d250ec/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
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'
All endpoints · 6 totalclick to expand

Search for promotional products by keyword. Returns matching products with price, retailer, and validity dates. Results can be sorted by price ascending.

Input
ParamTypeDescription
queryrequiredstringSearch keyword for promotional products (e.g. 'mleko', 'chleb')
postcodestringPolish postal code for location scoping (format: XX-XXX)
sort_by_pricebooleanSort results by price ascending
Response
{
  "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.

Common use cases
  • Track price drops on grocery items by comparing price and old_price fields from search_products across polling intervals.
  • Build a leaflet browser for Polish retail chains by paginating get_latest_leaflets and rendering coverImage thumbnails.
  • Aggregate current promotional product availability by retailer using list_stores and get_store_leaflets together.
  • Filter promotional flyers by store category (e.g. supermarkets vs. electronics) using retailer_category_id in get_latest_leaflets.
  • Retrieve all page images from a specific leaflet using get_leaflet_detail with order and retailer_slug inputs.
  • Monitor product validity windows by reading start_date and end_date from search_products to detect expiring deals.
  • Build a postcode-aware product search tool using the postcode parameter in search_products to scope results by location.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does Gazetkowo.pl have an official developer API?+
Gazetkowo.pl does not publish a documented public developer API. This Parse API provides structured access to the data the site exposes to end users.
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?+
The 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?+
The API surfaces currently active or recently active promotions. Expired products return not-found errors via 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.
Page content last updated . Spec covers 6 endpoints from gazetkowo.pl.
Related APIs in EcommerceSee all →
lowes.com API
Search and browse products from Lowe's, including product listings by category, detailed product information, and pricing. Retrieve comprehensive details on specific items to compare options and make informed purchasing decisions.
bilbasen.dk API
Search Denmark's largest car marketplace to find vehicles by make and model, then access detailed pricing and technical specifications including emissions, weight, MSRP, battery size, and equipment details. Get comprehensive car listings and full specs to compare vehicles on Bilbasen.dk.
jula.fi API
Search and browse products from Jula.fi to find hardware items with detailed information including prices (with and without VAT), stock availability, brand details, and product SKUs. Explore products by category or search for specific items to compare pricing and check real-time stock status.
leroymerlin.fr API
Search and browse Leroy Merlin France's complete product catalog to find items by category, view pricing, product details, and compare offerings from Leroy Merlin and their online partners. Access real-time product information including names, IDs, URLs, and seller details to help you discover and evaluate home improvement and DIY products.
industrynet.com API
Find industrial suppliers and browse product categories across a comprehensive marketplace directory. Connect directly with suppliers by viewing detailed listings and submitting contact inquiries programmatically.
carsforsale.com API
Search vehicle listings and browse detailed car inventory by make, model, and trim to find the perfect vehicle on CarsForSale.com. Access comprehensive listing details including pricing, specifications, and availability all in one place.
vivino.com API
Search and discover wines across thousands of options while accessing detailed information like user reviews, pricing, winery profiles, and food pairing recommendations. Explore grape varieties, compare wines side-by-side, and find the perfect bottle based on ratings and availability.
x-kom.pl API
Access product data from x-kom.pl, a major Polish electronics retailer. Search products by keyword or category, retrieve detailed product pages, customer reviews, Q&A, promotions, flash deals, and physical store locations.