code snippet
What can you do with the ShoppingScraper bol.com Offers API?
- Scrape offers from multiple sellers on bol.com in any supported country
- Scrape prices, shipping, and total cost based on the URL or SKU
- Translate the SKU to match products on bol.com's marketplace
API response
url | the requested URL | |
sku | the requested SKU code | |
geo | country | selected country for request on bol.com |
status | response | server response from the request (200/404/429/500) |
results | classification | type of data returned from bol.com |
offers | sellerName | seller's name on bol.com |
sellerReference | unique seller reference on bol.com | |
price | price of the product offer | |
shippingPrice | shipping cost for the product offer | |
totalPrice | total price including shipping | |
condition | condition of the product offer (New/Used) | |
shippingMethod | shipping method used for the product offer |
Parameters
Description | Example values |
Add your own metadata to your request, will be added to the payload | internal product id = 5555 |
Any ISO 3166-1 country code where bol.com is supported | nl, etc. |
Identify any product with SKU code | 9300000152042024 |
Your ShoppingScraper API key | (hidden for security) |
Matching & countries
We only return data if we can accurately match the SKU on bol.com. You can add the geo location (nl or be) and language (nl or fr) to get the right data.
Sample URL using URL
https://api.shoppingscraper.com/offers?site=bol.com&url={URL}&api_key={API_KEY}
Sample URL using EAN
https://api.shoppingscraper.com/offers?site=bol.com&ean={EAN}&api_key={API_KEY}&gl=be&hl=fr
Sample URL using SKU
https://api.shoppingscraper.com/offers?site=bol.com&sku={SKU}&api_key={API_KEY}&gl=be&hl=fr
Sample payload
{ "results": [ { "ean": "8720246689310", "sku": "9300000152042024", "url": "https://www.bol.com/nl/nl/p/homra-koniq-prullenbak-30-liter-pedaalemmer-zwart-afvalbak-30l-vuilnisbak-voor-huishouden-en-kantoor-vuilbak-keuken-afvalemmer-met-bacterie-filter-soft-close-deksel/9300000152042024/", "title": "Homra Koniq Prullenbak 30 Liter RVS met Geurfilter - Pedaalemmer Zwart - Afvalbak 30L - Vuilnisbak voor huishouden en kantoor - Vuilbak Keuken Afvalemmer Klein - Soft Close Deksel", "thumbnail": "https://media.s-bol.com/xBL5RAnp48Xr/nvD4pY/97x155.jpg", "availability": "InStock", "currency": "EUR", "offers": [ { "sellerName": "Zindoo", "sellerReference": "/nl/nl/v/zindoo/1105816/?sellingOfferId=28a2df42722fa153fa5c96c6af61c7d3", "price": "69.95", "shippingPrice": "0.00", "totalPrice": "69.95", "condition": "Nieuw", "shippingMethod": "standard" } ] } ] }