Discover/Megekko API
live

Megekko APImegekko.nl

Search and browse megekko.nl's Dutch electronics catalog via API. Get product specs, pricing, availability, reviews, and category trees across 4 endpoints.

Endpoint health
verified 3d ago
get_category_tree
search_products
get_category_products
get_product_details
4/4 passing latest checkself-healing
Endpoints
4
Updated
26d ago

What is the Megekko API?

The Megekko.nl API provides access to the full product catalog of this Dutch electronics retailer across 4 endpoints, returning pricing, availability, technical specifications, and user reviews. The get_product_details endpoint fetches grouped specification tables, comparable product suggestions, and delivery information for any product URL. The get_category_tree endpoint exposes the complete navigation hierarchy, making it straightforward to discover and enumerate leaf-level categories for bulk product retrieval.

Try it
Search keyword (e.g. 'RTX 4090', 'Intel Core i9', 'Samsung SSD').
api.parse.bot/scraper/0388e1c5-dbb8-42cf-966f-cefb12270283/<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/0388e1c5-dbb8-42cf-966f-cefb12270283/search_products?query=RTX+5070' \
  -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 megekko-nl-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.

"""Walkthrough: Megekko SDK — search products, get details, browse categories."""
from parse_apis.megekko_scraper_api import Megekko, ProductNotFound

client = Megekko()

# Search for graphics cards, cap results to 5
for product in client.products.search(query="RTX 5070", limit=5):
    print(product.name, product.price, product.availability)

# Drill into the first result's full details
product = client.products.search(query="Samsung SSD", limit=1).first()
if product:
    detail = client.productdetails.get(url=product.url)
    print(detail.title, detail.price)
    print(detail.specifications)

# List all categories and their subcategories
category = client.categories.list(limit=3).first()
if category:
    print(category.name, category.url)
    for sub in category.subcategories:
        print(f"  {sub.name}: {sub.url}")

# Browse a category's products using constructible Category
gpu_cat = client.category(name="Computer/Componenten/Videokaarten/Nvidia-Videokaarten")
for item in gpu_cat.list_products(limit=3):
    print(item.name, item.price, item.url)

# Handle a product that doesn't exist
try:
    client.productdetails.get(url="https://www.megekko.nl/product/0/000000/X/NonExistent")
except ProductNotFound as exc:
    print(f"Product not found: {exc.url}")

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

Full-text search over megekko.nl product catalog. Returns matching products with pricing, availability, category, and direct URLs. Results are ordered by relevance. A single request returns all matches (no server-side pagination).

Input
ParamTypeDescription
queryrequiredstringSearch keyword (e.g. 'RTX 4090', 'Intel Core i9', 'Samsung SSD').
Response
{
  "type": "object",
  "fields": {
    "products": "array of product objects with id, name, price, availability, url, category, brand, ean",
    "total_results": "integer, total number of matching products"
  },
  "sample": {
    "data": {
      "products": [
        {
          "id": 977930,
          "ean": null,
          "url": "https://www.megekko.nl/product/1963/977930/Nvidia-Videokaarten/MSI-GeForce-RTX-5080-16G-The-Mandalorian-and-Grogu-Edition-OC-Videokaart?s_o=1",
          "name": "MSI GeForce RTX 5080 16G The Mandalorian and Grogu Edition OC Videokaart",
          "brand": null,
          "price": "1499.00",
          "category": "Nvidia Videokaarten",
          "availability": "Uit eigen voorraad leverbaar. Levertijd:1 dag (vrijdag)"
        }
      ],
      "total_results": 489
    },
    "status": "success"
  }
}

About the Megekko API

Search and Product Lookup

The search_products endpoint accepts a single query string — such as 'RTX 4090' or 'Samsung SSD' — and returns all matching products in a single response with no server-side pagination. Each result includes id, name, price, availability, url, category, brand, and ean. The total_results field indicates how many matches were found. Product URLs returned here are the direct inputs to get_product_details.

Product Detail and Specifications

get_product_details takes a full megekko.nl product URL and returns the complete detail record: title, price in EUR, availability (including delivery information), a specifications object that maps category names to key-value pairs of technical attributes, an array of reviews with author, rating, text, and date, and a comparable_products array with name, price, and url for each suggestion. Specification depth varies by product type — a GPU will return memory, TDP, and connector data; a storage device will return capacity, interface, and read/write speeds.

Category Browsing

get_category_tree requires no inputs and returns the full navigation hierarchy as an object keyed by top-level category name, each containing a url and an array of subcategories with name and url. Subcategory paths from this response feed directly into get_category_products, which paginates at 50 products per page using the page parameter (1-indexed). Only leaf-level category_path values reliably return products — intermediate parent paths may return empty results.

Coverage Notes

All data reflects megekko.nl's Dutch-market inventory. Prices are in EUR. Availability strings describe Dutch-market stock and delivery conditions. EAN codes are included in search results where megekko.nl exposes them, but may be absent for some products.

Reliability & maintenanceVerified

The Megekko API is a managed, monitored endpoint for megekko.nl — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when megekko.nl 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 megekko.nl 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
3d 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 real-time price and availability for Dutch-market GPUs, CPUs, and SSDs using search_products.
  • Build a product comparison tool by pulling specifications grouped tables from get_product_details for multiple items.
  • Aggregate user review sentiment for electronics categories using the reviews array from get_product_details.
  • Enumerate all products in a specific hardware category (e.g. Nvidia graphics cards) via get_category_tree and get_category_products with pagination.
  • Extract EAN codes from search_products results to cross-reference megekko.nl listings with other European retailers.
  • Monitor comparable_products suggestions to understand how megekko.nl positions competing items within the same product page.
  • Populate a price-alert system by periodically querying get_product_details for target product URLs and comparing the returned price field.
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 megekko.nl have an official developer API?+
Megekko.nl does not publish a public developer API or documented data feed for third-party access.
What does `get_category_products` return, and how does pagination work?+
It returns an array of product objects — each with name, url, price, and availability — for a given leaf-level category_path. Results are paginated at 50 items per page, controlled by the page parameter (starting at 1). Using a parent or intermediate category path instead of a leaf path will typically return no results.
Does `search_products` support filtering by brand, price range, or specification?+
The endpoint accepts only a free-text query string. It returns brand, price, category, and ean fields in results, but server-side filtering by those fields is not supported. You can fork this API on Parse and revise it to add filter parameters.
Are seller ratings, third-party merchant listings, or historical price data available?+
Not currently. The API covers first-party megekko.nl product data: prices, availability, specifications, and on-page user reviews. Historical pricing and third-party seller data are not exposed. You can fork this API on Parse and revise it to add the missing endpoint.
How detailed are the `specifications` returned by `get_product_details`?+
Specifications are returned as a nested object: the outer keys are category names (e.g. 'General', 'Performance', 'Connectivity') and the inner keys are individual attribute names mapped to their string values. The depth and number of attributes depend on what megekko.nl displays for that product type — some products have extensive spec tables while others have only a few fields.
Page content last updated . Spec covers 4 endpoints from megekko.nl.
Related APIs in EcommerceSee all →
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.
mediamarkt.be API
Search and browse MediaMarkt Belgium's product catalog to find electronics with detailed specifications, pricing, and available variants across all categories. Get comprehensive product information including descriptions and technical details to compare items before purchase.
amazon.nl API
Search Amazon.nl for products by keyword, retrieve full product details and specifications, read customer reviews, and browse category bestseller lists.
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.
newegg.com API
Search Newegg's product catalog and retrieve listings, specifications, customer reviews, Q&A, category trees, and daily deals.
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.
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.
komplett.no API
Search and browse products from Komplett.no's electronics catalog, view detailed specifications and customer reviews, check real-time delivery options, and discover weekly deals and outlet items. Find related products, explore categories, and get all the information you need to compare and purchase electronics from Norway's leading tech retailer.