Discover/Coolblue API
live

Coolblue APIcoolblue.be

Access Coolblue Belgium product data via API. Search electronics, browse GPUs, CPUs, and smartphones, and retrieve live prices and stock availability.

Endpoint health
verified 7d ago
search_products
get_product_details
get_gpu_listings
get_category_listings
get_cpu_listings
7/7 passing latest checkself-healing
Endpoints
7
Updated
22d ago

What is the Coolblue API?

The Coolblue.be API covers 7 endpoints for querying Belgium's largest electronics retailer, returning product names, prices in EUR, availability status, ratings, and review counts. Use search_products to find items by keyword, or hit category-specific endpoints like get_gpu_listings and get_cpu_listings to paginate through entire product categories with consistent response fields across all results.

Try it
Search keyword (e.g. 'iPhone', 'headphones', 'monitor')
api.parse.bot/scraper/30136e3d-48af-40d4-a418-dfcf5029f660/<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/30136e3d-48af-40d4-a418-dfcf5029f660/search_products?query=iPhone' \
  -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 coolblue-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.

"""Walkthrough: Coolblue.be SDK — product search, category browsing, pricing."""
from parse_apis.coolblue_be_product_api import Coolblue, NotFoundError

coolblue = Coolblue()

# Search for products by keyword, capped at 5 results
for item in coolblue.listings.search(query="RTX 5080", limit=5):
    print(item.name, item.price, item.availability)

# Browse GPUs via the dedicated listing method
for gpu in coolblue.listings.list_gpus(limit=3):
    print(gpu.name, gpu.price, gpu.currency)

# Browse a category with automatic pagination
smartphones = coolblue.category("smartphones")
for phone in smartphones.list_products(limit=3):
    print(phone.name, phone.price, phone.currency)

# Drill into full product details from a listing
listing = coolblue.listings.list_cpus(limit=1).first()
if listing:
    product = listing.details()
    print(product.name, product.brand, product.price, product.rating)

    # Get real-time price and availability
    price_info = product.get_price()
    print(price_info.name, price_info.price, price_info.availability)

# Typed error handling
try:
    bad_listing = coolblue.listings.search(query="nonexistent xyz qqq", limit=1).first()
    if bad_listing:
        bad_listing.details()
except NotFoundError as exc:
    print(f"Product not found: {exc}")

print("exercised: listings.search / list_gpus / list_cpus / category.list_products / listing.details / product.get_price")
All endpoints · 7 totalmissing one? ·

Full-text search across Coolblue.be's product catalog. Returns products matching the query keyword with name, price, availability, and product ID. Handles search redirects to brand or category pages automatically. Results are returned as a single page of all matching items.

Input
ParamTypeDescription
queryrequiredstringSearch keyword (e.g. 'iPhone', 'headphones', 'monitor')
Response
{
  "type": "object",
  "fields": {
    "query": "search query string echoed back",
    "total": "integer count of products returned",
    "products": "array of product objects with product_id, name, url, price, currency, availability, image, rating, review_count"
  },
  "sample": {
    "data": {
      "query": "iPhone",
      "total": 22,
      "products": [
        {
          "url": "https://www.coolblue.be/nl/product/968961/apple-iphone-17-256gb-zwart.html",
          "name": "Apple iPhone 17 256GB Zwart",
          "image": "https://image.coolblue.be/500x500/products/2212660",
          "price": "966",
          "rating": "N/A",
          "currency": "EUR",
          "product_id": "968961",
          "availability": "InStock",
          "review_count": 0
        }
      ]
    },
    "status": "success"
  }
}

About the Coolblue API

What the API Returns

All listing endpoints — get_gpu_listings, get_cpu_listings, get_smartphone_listings, and the general get_category_listings — return paginated arrays of product objects. Each object includes product_id, name, url, price, currency (EUR), availability, image, rating, and review_count. The total_pages field lets you walk the full catalogue without guessing page boundaries. The get_category_listings endpoint accepts a category_path parameter such as 'laptops/windows-laptops' or 'videokaarten', making it more flexible than the named-category shortcuts.

Search and Product Detail

search_products takes a single query string (e.g. 'iPhone', 'monitor') and echoes back the query alongside a total count and the matching product array. It handles search redirects automatically, so a brand search like 'Samsung' that Coolblue internally routes to a brand page still resolves to a product list. For deeper inspection, get_product_details accepts a full product URL and returns the extended set of fields: brand, a description (HTML-encoded), an images array, and rating with review_count — richer than what listing endpoints expose.

Price and Availability Checks

get_product_price_and_availability is a lightweight endpoint for polling current price and stock status on a single item. It returns price, currency, availability (as a schema.org URL, e.g. https://schema.org/InStock), and product_id without the full spec payload. This makes it suitable for price-tracking pipelines where full product detail is already cached and only the mutable fields need refreshing.

Reliability & maintenanceVerified

The Coolblue API is a managed, monitored endpoint for coolblue.be — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when coolblue.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 coolblue.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
7d ago
Latest check
7/7 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 daily price changes on GPUs by polling get_gpu_listings and comparing stored price values.
  • Build a CPU benchmark comparison tool by enriching get_cpu_listings results with get_product_details specs.
  • Monitor smartphone availability for drop-in-stock alerts using get_product_price_and_availability.
  • Aggregate Belgian electronics pricing across categories via get_category_listings with custom category_path values.
  • Feed a shopping comparison site with Coolblue product names, images, and ratings from search_products.
  • Identify top-rated products in a category by filtering on rating and review_count from listing responses.
  • Automate competitive price intelligence for Belgium's electronics market using paginated category sweeps.
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 Coolblue have an official public developer API?+
Coolblue does not offer a public developer API for product data, pricing, or availability. This Parse API provides structured access to that data.
What does `get_product_details` return that listing endpoints do not?+
get_product_details returns additional fields not present in listing arrays: brand, description (HTML-encoded product description), and images (an array of image URLs). Listing endpoints return a single image field and omit brand and description entirely.
Does `get_category_listings` cover all Coolblue categories, or only a fixed set?+
It accepts any valid category_path string, including nested paths like 'laptops/windows-laptops', so it is not limited to a fixed set. The named-category endpoints (get_gpu_listings, get_cpu_listings, get_smartphone_listings) are convenience shortcuts for three common categories.
Does the API return product specifications or filter options (e.g. RAM size, GPU memory)?+
Not currently. The API returns pricing, availability, ratings, and review counts at the listing level, and a description field at the detail level, but no structured technical specifications or facet filter values. You can fork this API on Parse and revise it to add a specifications endpoint that parses the spec table from individual product pages.
How does pagination work across category endpoints?+
All listing endpoints return a page integer (current page), count (products on that page), and total_pages (estimated total pages). Pass the page parameter incrementally to retrieve subsequent pages. The total_pages value is an estimate, so treat it as a ceiling rather than an exact page count.
Page content last updated . Spec covers 7 endpoints from coolblue.be.
Related APIs in EcommerceSee all →
coolblue.nl API
Browse and search thousands of laptops on Coolblue.nl to compare specs, prices, and reviews across new, refurbished, and second-hand models filtered by brand and category. Get detailed product information including specifications, pricing, and customer reviews to find the perfect laptop for your needs.
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.
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.
tweakers.net API
Access product listings, prices, shop comparisons, news articles, and search results from Tweakers.net — the leading Dutch tech platform and price comparison site.
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.
pccomponentes.com API
Search and browse PC components across categories and retrieve detailed product information including technical specifications, pricing, availability, and customer reviews. Ideal for comparing hardware options across processors, graphics cards, laptops, and more.