Skip to main content
POST
/
api
/
bol
/
products
/
reviews
/bol/products/reviews
curl --request POST \
  --url https://api.anysite.io/api/bol/products/reviews \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@bol_product_review",
    "rating": 123,
    "title": "<string>",
    "text": "<string>",
    "author": "<string>",
    "author_age": "<string>",
    "author_city": "<string>",
    "date": "<string>",
    "is_verified": true,
    "pros": [],
    "cons": [],
    "helpful_count": 123,
    "unhelpful_count": 123
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Bol.com product id or a product URL containing it

Minimum string length: 1
Examples:

"9300000039086009"

"https://www.bol.com/nl/nl/p/sony-ps5-dualsense/9300000039086009/"

count
integer
required

Max number of reviews to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@bol_product_review
rating
integer | null
title
string | null
text
string | null
author
string | null
author_age
string | null
author_city
string | null
date
string | null
is_verified
boolean | null
pros
string[]
cons
string[]
helpful_count
integer | null
unhelpful_count
integer | null