
Bol Product Scraper
1 day trial then $30.00/month - No credit card required now

Bol Product Scraper
1 day trial then $30.00/month - No credit card required now
An Apify actor for scraping product details from Bol.com, including name, brand, price, image, rating, and availability. Supports search queries, pagination, and country/language selection.
Actor Metrics
3 Monthly users
No reviews yet
2 bookmarks
>99% runs succeeded
Created in Feb 2025
Modified 12 days ago
Bol.com Product Scraper
Overview
This Apify scraper is designed to extract product data from Bol.com based on user-specified search queries. It retrieves product details such as name, brand, price, image URL, product URL, description, rating, and availability.
Features
- Search for products on Bol.com using specified query terms.
- Scrape multiple pages to retrieve a list of products.
- Extract structured product data, including pricing, ratings, and availability.
- Supports country selection.
Input Parameters
To use this scraper, you need to provide the following input parameters:
Parameter | Type | Required | Default | Description |
---|---|---|---|---|
query | String | Yes | N/A | The search keyword for products. |
limit | Int | No | 30 | The maximum number of products to scrape. |
country | String | No | nl | Country code for Bol.com search. |
Output Format
The scraper returns a JSON array with product details. Each product contains:
1[ 2 { 3 "product_id": "123456", 4 "name": "Product Name", 5 "brand": "Brand Name", 6 "price": "€99.99", 7 "image_url": "https://image.url", 8 "product_url": "https://www.bol.com/product-url", 9 "description": "Product description...", 10 "rating": "4.5", 11 "availability": "In stock" 12 } 13]
Example Usage
You can run the scraper by providing an input JSON like this:
1{ 2 "query": "iphone", 3 "limit": 50, 4 "country": "nl" 5}