Discover/euronics.it API
live

euronics.it APIwww.euronics.it

Fetch product listings, real-time prices, and discount data from Euronics Italy by category or keyword search via 2 structured JSON endpoints.

Endpoints
2
Updated
14d ago
Try it
Page number (1-based). Set to 0 to fetch all pages.
Maximum number of products to return. 0 for no limit.
Demandware category ID for the product category to browse (e.g., 'tv', 'smartphones', 'aud
api.parse.bot/scraper/fb28651d-4ef1-4434-8876-0b7d53a6f0e9/<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/fb28651d-4ef1-4434-8876-0b7d53a6f0e9/get_products?page=1&limit=5&category_id=smartphones' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 2 totalclick to expand

Get all products from a specified category on Euronics Italy. Supports pagination and limiting results.

Input
ParamTypeDescription
pageintegerPage number (1-based). Set to 0 to fetch all pages.
limitintegerMaximum number of products to return. 0 for no limit.
category_idstringDemandware category ID for the product category to browse (e.g., 'tv', 'smartphones', 'audio').
Response
{
  "type": "object",
  "fields": {
    "total": "integer — number of products returned",
    "products": "array of product objects with id, name, brand, category, price, price_formatted, original_price, original_price_formatted, discount_percent, url, image_url, badges, availability",
    "category_id": "string — the requested category ID"
  },
  "sample": {
    "data": {
      "total": 5,
      "products": [
        {
          "id": "252006206",
          "url": "https://www.euronics.it/tv-e-audio/tv/tv-4k/samsung---smart-tv-led-uhd-4k-55-ue55u7000fuxzt-titan-gray/252006206.html",
          "name": "SAMSUNG - Smart TV LED UHD 4K 55\" UE55U7000FUXZT-Titan Gray",
          "brand": "SAMSUNG",
          "price": 449.99,
          "badges": [],
          "category": "Tv 4K",
          "image_url": "https://www.euronics.it/dw/image/v2/BFPN_PRD/on/demandware.static/-/Sites-catalog_euronics_master/default/dw611bb3d1/hi-res/252006206.jpg?sw=400&q=90&strip=false",
          "availability": "available",
          "original_price": 549,
          "price_formatted": "€ 449,99",
          "discount_percent": 18,
          "original_price_formatted": "€ 549,00"
        }
      ],
      "category_id": "tv"
    },
    "status": "success"
  }
}

About the euronics.it API

The Euronics Italy API gives developers structured access to the euronics.it product catalog through 2 endpoints: get_products for category browsing and search_products for keyword queries. Each product object returns fields including id, name, brand, category, price, original_price, and discount data, making it straightforward to track pricing, monitor promotions, or populate a product comparison tool targeting the Italian electronics retail market.

Category Browsing with get_products

The get_products endpoint accepts a category_id string — such as tv, smartphones, or audio — and returns a paginated list of products from that category on euronics.it. The page parameter is 1-based; setting it to 0 fetches all pages in one call. The limit parameter caps the number of results, with 0 meaning no limit. The response includes a total count alongside the products array and echoes back the category_id you requested, which is useful for logging and cross-referencing in pipelines.

Keyword Search with search_products

The search_products endpoint takes a query string — for example 'samsung tv 55' or 'lg oled' — and returns all matching products unless constrained by the limit parameter. The response mirrors the same product object shape as get_products: id, name, brand, category, price, price_formatted, original_price, original_price_formatted, and discount fields. The query field is echoed back in the response alongside total and the products array.

Product Object Fields

Both endpoints return the same product object structure. Pricing fields come in both raw numeric form (price, original_price) and display-ready strings (price_formatted, original_price_formatted), so you can skip formatting logic on the client side. Discount data is included per product, allowing you to filter or sort by promotional depth without a secondary request. The brand and category fields are returned as strings and reflect the catalog metadata on euronics.it.

Coverage and Scope

This API covers the Italian Euronics storefront at euronics.it. Category IDs follow the Demandware taxonomy used by the site, so valid values include consumer electronics categories like tv, smartphones, audio, laptop, and others present in the site's navigation. Product availability, stock status, and seller/store-level data are not part of the current response schema.

Common use cases
  • Track price drops and discount depth on Italian consumer electronics using price and original_price fields
  • Build a product comparison tool for Italian electronics shoppers using name, brand, and price_formatted
  • Monitor Euronics Italy's smartphone category (category_id: smartphones) for new listings
  • Power a deal-finder alert system by polling search_products for specific model queries like 'iphone 15'
  • Aggregate category-level pricing data across tv, audio, and laptop categories for market research
  • Sync a product feed for affiliate or price-comparison sites targeting Italian electronics buyers
  • Detect promotional campaigns by comparing price to original_price across a full category page sweep
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 Euronics Italy have an official developer API?+
Euronics Italy does not publish a public developer API or documented data access program. This Parse API provides structured programmatic access to the euronics.it product catalog.
How does pagination work in the get_products endpoint?+
The page parameter is 1-based, so page=1 returns the first page of results for the given category_id. Setting page=0 fetches all pages in a single call, which is convenient for small categories but may return a large payload for popular ones like tv or smartphones. Use the limit parameter alongside page=0 if you need to cap the result set.
Does the API return stock availability or in-store pickup information?+
Not currently. The API returns product identity, pricing, brand, and category data. Stock levels, inventory status, and store-level availability are not part of the response schema. You can fork this API on Parse and revise it to add an endpoint covering stock or store data if those fields are needed.
Can I retrieve product detail pages, images, or specifications?+
Not currently. Both get_products and search_products return catalog-level fields: id, name, brand, category, price, original_price, and discount data. Extended specifications, product images, and full description pages are not exposed. You can fork this API on Parse and revise it to add a product detail endpoint using the returned id values.
Are the prices returned in the API real-time or cached?+
The prices reflect what euronics.it displays at the time of the request. The price and price_formatted fields are fetched on demand, so they should correspond to the current listed price. However, flash sales or very short-lived promotions may not always be captured if the catalog updates faster than your polling interval.
Page content last updated . Spec covers 2 endpoints from www.euronics.it.
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.