Bol.com Scraper avatar
Bol.com Scraper

Pricing

$14.99/month + usage

Go to Store
Bol.com Scraper

Bol.com Scraper

Developed by

Muhammet Akkurt

Muhammet Akkurt

Maintained by Community

An efficient Apify actor that extracts detailed product information from Bol.com. It supports multiple countries and languages, allowing customizable searches. The scraper collects data such as product names, prices, sellers, and more, saving results to Apify's dataset.

5.0 (1)

Pricing

$14.99/month + usage

3

Total users

26

Monthly users

9

Runs succeeded

98%

Issues response

1.1 hours

Last modified

11 hours ago

Bol.com Product Scraper

Bol.com Product Scraper

This project is an Apify actor designed to scrape product information from Bol.com. It collects details such as product name, price, seller information, reviews, and more based on a given search term.

Features

  • Searches for products on Bol.com based on a given search term.
  • Collects detailed product information.
  • Supports multiple countries (Belgium and Netherlands) and languages (Dutch and French).
  • Allows specifying the number of pages to scrape.
  • Option to include or exclude sponsored search results.
  • Saves the collected data to the Apify dataset in a structured format.

Usage

  1. Run this actor in the Apify console.
  2. Provide the desired inputs:
    • searchTerm: The product or category to search for on Bol.com.
    • country: The country to search in (be or nl).
    • language: The language to use for the search (nl or fr).
    • totalPages: The total number of pages to scrape.
    • includeSponsored: Check this to include sponsored products.

Example Input

{
"searchTerm": "laptop",
"country": "be",
"language": "nl",
"totalPages": 2,
"includeSponsored": true
}

Output

The collected data is saved to the Apify dataset. The output data includes the following fields:

  • id: The unique Product ID
  • title: Product name
  • link: Product URL
  • image: URL of the product image
  • seller: Seller name (if available)
  • price: Current selling price
  • discount_price: The original price before a discount
  • orderable: Whether the product can be ordered
  • reviews_average: The average user rating
  • reviews_total: The total number of reviews
  • summary: A short summary of product specifications
  • delivery_description: Information about the delivery
  • retailer_id: The unique ID of the retailer
  • bundle_prices: Pricing information for bulk purchases

Example Output

{
"id": "9300000183478743",
"title": "SKIKK Idavoll II - 17 inch laptop voor onderweg met DVD Speler en VGA AZERTY BE",
"link": "https://www.bol.com/be/nl/p/skikk-idavoll-ii-17-inch-laptop-voor-onderweg-met/9300000183478743/",
"image": "https://media.s-bol.com/J9rrZE6DWPwy/XDYNGWl/550x309.jpg",
"seller": "unknown",
"retailer_id": "1441265",
"price": "899.00",
"discount_price": null,
"orderable": true,
"summary": "17.3 Inch; Full HD; Intel Core i7 processor; RAM: 32 GB; 1000 GB opslag; SSD; Intel Iris Xe Graphics; AZERTY toetsenbord lay-out",
"reviews_average": 5,
"reviews_total": 2,
"delivery_description": "Uiterlijk 14 augustus in huis",
"bundle_prices": [
{
"minimumQuantity": 3,
"price": {
"amount": "854.05"
},
"sellingOfferDiscount": {
"amount": {
"amount": "44.95"
}
}
}
]
}

This example output shows the structured data of a single product. The actual output will be a list of similar objects for all processed products.

Notes

  • Sponsored products may appear in the dataset more than once.
  • The collected data is stored in Apify’s default data store.