Skip to main content
POST
/
api
/
bol
/
products
/bol/products
curl --request POST \
  --url https://api.anysite.io/api/bol/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@bol_product",
    "url": "<string>",
    "name": "<string>",
    "product_group_id": "<string>",
    "description": "<string>",
    "brand": "<string>",
    "brand_url": "<string>",
    "serie": "<string>",
    "serie_url": "<string>",
    "color": "<string>",
    "ean": "<string>",
    "image": "<string>",
    "price": 123,
    "currency": "<string>",
    "condition": "<string>",
    "availability": "<string>",
    "is_in_stock": true,
    "seller_name": "<string>",
    "rating": 123,
    "review_count": 123,
    "low_price": 123,
    "high_price": 123,
    "offer_count": 123,
    "variant_count": 123,
    "dimensions": {
      "@type": "@bol_product_dimensions",
      "depth": 123,
      "height": 123,
      "width": 123,
      "weight": 123
    },
    "breadcrumbs": []
  }
]

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:

"9300000266631367"

"https://www.bol.com/nl/nl/p/apple-macbook-air/9300000266631367/"

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
url
string | null
name
string | null
product_group_id
string | null
description
string | null
brand
string | null
brand_url
string | null
serie
string | null
serie_url
string | null
color
string | null
ean
string | null
image
string | null
price
number | null
currency
string | null
condition
string | null
availability
string | null
is_in_stock
boolean | null
seller_name
string | null
rating
number | null
review_count
integer | null
low_price
number | null
high_price
number | null
offer_count
integer | null
variant_count
integer | null
dimensions
BolProductDimensions · object
breadcrumbs
string[]