What can you do with the bol.com Seller API?
- Scrape information about the bol.com seller
- Use the seller data for your lead generation activities
- Check if sellers are verified
API response
query link | link | the requested url from ShoppingScraper |
ean | the requested EAN code | |
endpoint | type | endpoint used |
app | chosen bol.com app | |
geo | country | selected country for request |
language | selected language | |
status | response | server response from the request (200/404/500) |
message | status message from the request | |
results | classification | type of data returned |
name | name of seller | |
content reviews count | total count of number of reviews | |
content reviews scale | maximum scale | |
content reviews rating | average rating of the product | |
description | seller description | |
label | additional data found on bol.com (active since) | |
promise | delivery promise and other terms | |
startDate | the owner of the buybox | |
products Link and count | deeplink to products page and count of products of seller | |
VAT, chamber of commerce and tradename | Additional details of sellers entity |
Parameters
Description | Example values | |
metadata | Add your own metadata to your request, will be added to the payload | internal product id = 5555 |
country_code | Any ISO 3166-1 country code where bol.com is active | nl or be |
ean_gtin | Identify any product with EAN/GTIN code | 190198512154 or 5702016368635 |
api_key | Your ShoppingScraper API key | no example to show here 😉 |
content | Adds the content description and thumbnail | true or false |
sellers | Adds all sellers and buy box information | true or false |
Matching
We only return data if we are 100% certain. We match sellers based on the seller ID on bol.com
Sample URL
https://api.shoppingscraper.com/seller/{SELLERID}?app=bolcom&country={COUNTRYCODE}&language={LANGUAGECOUNTRYCODE}&api_key={API_KEY}
Sample payload
{ "shoppingscraper": { "endpoint": { "type": "seller" }, "geo": { "country": "nl", "language": "nl" }, "status": { "response": 200, "message": "OK" }, "results": [ { "classification": "organization", "name": "Speelgoedwonder", "content": { "reviews": { "rating": 8.4, "scale": 10, "count": 58 }, "description": "De leukste speelgoedwinkel op het web!", "label": [ { "Actief sinds": "18 oktober 2018" } ], "promise": [ "30 dagen bedenktijd", "Gratis retourneren" ] }, "startDate": "18 oktober 2018", "products": { "link": "https://www.bol.com/nl/nl/w/alle-artikelen-speelgoedwonder/1398826/", "count": 1618 }, "vatNumber": "NL817762140B01", "chamberOfCommerce": "04085691", "tradeName": "Speelgoedwonder" } ] } }