Coolblue Scraper avatar

Coolblue Scraper

Pricing

from $3.00 / 1,000 results

Go to Apify Store
Coolblue Scraper

Coolblue Scraper

Scrape Coolblue with the leading consumer electronics retailer in the Netherlands, Belgium and Germany. Search products, browse categories, or fetch individual product details including prices, ratings, specifications and delivery times.

Pricing

from $3.00 / 1,000 results

Rating

5.0

(4)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

4

Bookmarked

2

Total users

1

Monthly active users

a day ago

Last modified

Share

Scrape product listings, categories, and individual product pages from Coolblue — the leading consumer electronics retailer in the Netherlands, Belgium, and Germany.

What data can you extract?

For each product you get:

FieldDescription
productIdCoolblue product SKU number
nameFull product name
brandBrand (HP, Lenovo, Apple, etc.)
priceCurrent sale price in EUR
originalPriceMSRP / Adviesprijs, if discounted
discountPercentDiscount percentage (when applicable)
ratingAverage customer rating (0–10 scale)
reviewCountNumber of customer reviews
categoryProduct category
descriptionProduct description
specificationsKey-value map of technical specifications
inStockWhether the product is in stock
deliveryTimeEstimated delivery time
urlFull product page URL
imageUrlMain product image URL
scrapedAtISO timestamp of scrape

Modes

1. Search Products (searchProducts)

Search Coolblue by keyword. Works for any product type.

Input:

{
"mode": "searchProducts",
"query": "laptop",
"maxItems": 30
}

2. Browse Category (browseCategory)

Browse a specific Coolblue category URL.

Input:

{
"mode": "browseCategory",
"categoryUrl": "/laptops/windows-laptops",
"maxItems": 50
}

Example category paths:

  • /laptops — All laptops
  • /laptops/windows-laptops — Windows laptops
  • /laptops/gaming-laptops — Gaming laptops
  • /smartphones — Smartphones
  • /televisies — Televisions
  • /koelkasten — Refrigerators

3. Get Product Details (getProductDetails)

Fetch complete details for a single product including full description and specifications.

Input:

{
"mode": "getProductDetails",
"productUrl": "https://www.coolblue.nl/product/977968/hp-laptop-15-fd1065nd.html"
}

Input Configuration

ParameterTypeDescriptionDefault
modeselectWhat to scrapesearchProducts
querystringSearch keyword(s)laptop
categoryUrlstringCategory path (e.g. /laptops/windows-laptops)/laptops/windows-laptops
productUrlstringFull product page URL
maxItemsintegerMax products to return (1–200)30

Sample Output

{
"productId": "977968",
"name": "HP Laptop 15-fd1065nd",
"brand": "HP",
"price": 649,
"originalPrice": 779,
"discountPercent": 16.7,
"rating": 7.6,
"reviewCount": 4,
"inStock": true,
"url": "https://www.coolblue.nl/product/977968/hp-laptop-15-fd1065nd.html",
"imageUrl": "https://image.coolblue.nl/transparent/max/212x170/products/1581992017",
"scrapedAt": "2026-05-23T10:00:00+00:00"
}

Data Source

Data is scraped directly from coolblue.nl, which serves traditional server-side rendered HTML for search and listing pages. No API keys, cookies, or paid proxies are required — the actor works on the free Apify plan.

FAQs

Does this require a Coolblue account? No. All scraped data is publicly visible without logging in.

What countries does Coolblue cover? Coolblue operates in the Netherlands (coolblue.nl), Belgium (coolblue.be), and Germany (coolblue.de). This actor scrapes the Dutch .nl version.

How many products can I scrape? The maxItems parameter supports up to 200 products per run. Each search or category page returns up to 24 products, so the actor paginates automatically.

Is there a rate limit? The actor includes polite delays between requests to avoid overloading Coolblue's servers.

Can I filter by category? Yes — use mode=browseCategory with a Coolblue category path like /laptops/gaming-laptops.