Discover/MediaMarkt API
live

MediaMarkt APImediamarkt.be

Search MediaMarkt Belgium's catalog, browse categories, and retrieve full product specs, pricing, ratings, and variants via 4 structured endpoints.

Endpoint health
verified 4d ago
search_products
get_category_products
get_product_details
get_main_categories
4/4 passing latest checkself-healing
Endpoints
4
Updated
21d ago

What is the MediaMarkt API?

The MediaMarkt.be API gives developers structured access to Belgium's MediaMarkt catalog across 4 endpoints, covering product search, category browsing, and detailed product pages. The get_product_details endpoint returns up to a dozen fields per product including price, brand, color, storage variants, availability, and technical specifications. Results are paginated and include article numbers suitable for inventory tracking or price monitoring.

Try it
Page number to retrieve. Each page contains up to 12 products.
Search keyword (e.g. 'hdmi kabel', 'iphone case', 'samsung tv')
api.parse.bot/scraper/b861ff7d-c572-4037-a88c-2eb8324795bf/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/b861ff7d-c572-4037-a88c-2eb8324795bf/search_products?page=1&query=hdmi+kabel' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace mediamarkt-be-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""MediaMarkt Belgium: search, browse categories, get product details."""
from parse_apis.mediamarkt_be_api import Preview, ProductNotFound

client = Preview()

# Search for products by keyword — limit= caps total items fetched
for product in client.products.search(query="hdmi kabel", limit=5):
    print(product.name, product.price, product.currency)

# Browse categories from the homepage
category = client.categories.list(limit=1).first()
if category:
    print(f"Category: {category.name} (slug: {category.slug})")

    # List products within that category
    for item in client.category(category.slug).products(limit=3):
        print(item.name, item.price, item.rating)

# Fetch full product details including specs and variants
try:
    detail = client.productdetails.get(url_or_slug="apple-iphone-15-5g-128-gb-blue-mtp43zda-2107453")
    print(detail.name, detail.color, detail.storage)
    print("Specs:", len(detail.specifications), "entries")
    for color_variant in detail.variants.colors:
        print(f"  Color variant: {color_variant.name}")
except ProductNotFound as exc:
    print(f"Product not found: {exc.url_or_slug}")

print("exercised: products.search / categories.list / category.products / productdetails.get")
All endpoints · 4 totalmissing one? ·

Search for products on MediaMarkt.be by keyword. Returns paginated results with product names, prices, ratings, and images. Each page contains up to 12 products. Some common keywords may be redirected by the site to curated pages and return fewer results.

Input
ParamTypeDescription
pageintegerPage number to retrieve. Each page contains up to 12 products.
queryrequiredstringSearch keyword (e.g. 'hdmi kabel', 'iphone case', 'samsung tv')
Response
{
  "type": "object",
  "fields": {
    "page": "integer, current page number",
    "query": "string, the search query used",
    "has_next": "boolean, whether more pages are available",
    "products": "array of product objects with name, price, currency, rating, review_count, url, image, article_number",
    "total_on_page": "integer, number of products returned on this page",
    "total_results": "integer or absent, estimated total results (only present when extractable from the page)"
  },
  "sample": {
    "data": {
      "page": 1,
      "query": "hdmi kabel",
      "has_next": true,
      "products": [
        {
          "url": "https://www.mediamarkt.be/nl/product/_isy-ihd-1015-hdmi-kabel-4k-15-m-2084710.html",
          "name": "ISY IHD 1015 HDMI kabel 4K 1,5 m",
          "image": "https://assets.mmsrg.com/isr/166325/c1/-/ASSET_MMS_159694095",
          "price": 10.99,
          "rating": 5,
          "currency": "EUR",
          "review_count": 2,
          "article_number": "2084710"
        }
      ],
      "total_on_page": 12
    },
    "status": "success"
  }
}

About the MediaMarkt API

Search and Browse

The search_products endpoint accepts a query string (e.g. 'laptop' or 'iphone 15 128gb') and an optional page integer. Each page returns up to 12 products with name, price, currency, rating, review_count, url, image, article_number, brand, and an optional discount field. The total_results field gives an estimated count across all pages, and has_next signals whether additional pages exist.

The get_category_products endpoint works similarly but scopes results to a specific category using a category_slug parameter that matches the URL path — for example 'laptop-866' or 'telefonie-wearables-891'. The get_main_categories endpoint (no inputs required) returns the full list of top-level navigation categories with their name, slug, and url, making it straightforward to discover valid slugs before querying category listings.

Product Detail

The get_product_details endpoint accepts either a full product URL or a slug such as 'apple-iphone-15-5g-128-gb-blue-mtp43zda-2107453'. It returns name, brand, color, storage, price, rating, description, availability, and a variants object containing colors and storage arrays — each with a variant name and url. This makes it possible to enumerate all purchasable configurations of a product without additional lookups.

Coverage and Pagination

All listing endpoints (search_products, get_category_products) expose page, total_on_page, and has_next fields for cursor-style pagination. The currency field is fixed to EUR, reflecting MediaMarkt Belgium's pricing. Article numbers (article_number) are consistent across search and category results, enabling deduplication when the same product appears in multiple queries.

Reliability & maintenanceVerified

The MediaMarkt API is a managed, monitored endpoint for mediamarkt.be — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when mediamarkt.be changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official mediamarkt.be API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track price changes on specific products by polling get_product_details with a stored product slug
  • Build a category navigator by fetching get_main_categories then paginating through get_category_products for each slug
  • Enumerate all color and storage variants for a product line using the variants object from get_product_details
  • Monitor in-stock availability across a product set using the availability field returned by get_product_details
  • Aggregate brand-level pricing data by filtering search_products results by the brand response field
  • Compile product ratings and review counts across a category by paginating get_category_products and reading rating and review_count
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 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 MediaMarkt have an official public developer API?+
MediaMarkt does not publish a public developer API for its Belgian storefront. There is no documented REST or GraphQL API available to third-party developers at the time of writing.
What does the `get_product_details` endpoint return beyond basic pricing?+
Beyond price, it returns brand, color, storage, description, availability, rating, a main image URL, and a variants object listing all color and storage configurations with their individual URLs. The brand and color fields can be null when the source data does not include them.
Does the search endpoint support filtering by brand, price range, or other facets?+
The search_products endpoint currently accepts only a query string and a page number. Facet filtering by brand, price range, or category is not exposed. You can fork this API on Parse and revise it to add a filtering endpoint if that capability is needed.
How many products does each page return, and is there a way to get more per page?+
Each page of search_products returns up to 12 products, matching MediaMarkt.be's default pagination. There is no parameter to increase the page size. The total_results field gives an estimated total so you can calculate how many pages to iterate.
Are promotions, bundle deals, or historical price data available through this API?+
The API exposes a discount field on search results when a markdown is present, but historical pricing, bundle configurations, and promotional campaign details are not covered. You can fork this API on Parse and revise it to add an endpoint targeting promotional or deals pages.
Page content last updated . Spec covers 4 endpoints from mediamarkt.be.
Related APIs in EcommerceSee all →
coolblue.be API
Search and browse electronics products from Coolblue Belgium, including CPUs, GPUs, and smartphones, with instant access to detailed specifications, pricing, and availability. Find exactly what you need by category or search query, and check real-time stock and price information across their entire catalog.
alternate.be API
Search for products on Alternate Belgium and instantly access live prices, stock availability, technical specifications, customer reviews, and current deals across their entire catalog. Browse their complete category structure to find exactly what you need and compare products before making a purchase decision.
megekko.be API
Search and browse the full Megekko product catalog, view detailed specs, pricing, and stock availability. Browse by category, use keyword search to find specific products, or explore shortcut endpoints for popular categories like GPUs and CPUs.
megekko.nl API
Search and browse products from Megekko's electronics catalog, getting detailed specifications, pricing, and category information to compare items and find exactly what you're looking for. Explore the full product hierarchy to discover items across all categories and subcategories available on the store.
gamma.be API
Search and browse products from Gamma.be to find home improvement items with real-time pricing and detailed specifications. Get category listings and search suggestions to easily discover what you need at Belgium's leading home improvement store.
backmarket.fr API
Search for refurbished products on Back Market and retrieve detailed information including product specifications, available variants, pricing, and customer reviews all in one place. Get comprehensive product data to compare options and make informed purchasing decisions on certified refurbished electronics and devices.
backmarket.com API
Search and browse refurbished electronics across Back Market's catalog, compare pricing by condition, and read seller and product reviews to find the best deals. Filter by product categories and access detailed information about listings to make informed purchasing decisions.
euronics.it API
Browse and search the complete Euronics Italy product catalog with real-time pricing information across all categories. Find exactly what you're looking for with powerful keyword search or explore products by category with full pagination support.