Skip to main content
POST
/
api
/
bol
/
sellers
/bol/sellers
curl --request POST \
  --url https://api.anysite.io/api/bol/sellers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@bol_seller",
    "name": "<string>",
    "alias": "<string>",
    "description": "<string>",
    "active_since": "<string>",
    "image": "<string>",
    "rating": 123,
    "review_count": 123,
    "positive_reviews_percentage": 123,
    "is_top_seller": true,
    "product_count": 123,
    "partner": {
      "@type": "@bol_seller_partner",
      "legal_name": "<string>",
      "vat_number": "<string>",
      "business_registration_number": "<string>",
      "country": "<string>",
      "address": {
        "@type": "@bol_seller_address",
        "city": "<string>",
        "street_name": "<string>",
        "house_number": "<string>",
        "postal_code": "<string>",
        "country": "<string>"
      }
    },
    "rating_details": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
seller
string
required

Bol.com seller id or a seller URL containing it

Minimum string length: 1
Examples:

"1770684"

"https://www.bol.com/nl/nl/v/nbb-com/1770684/"

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_seller
name
string | null
alias
string | null
description
string | null
active_since
string | null
image
string | null
rating
number | null
review_count
integer | null
positive_reviews_percentage
number | null
is_top_seller
boolean | null
product_count
integer | null
partner
BolSellerPartner · object
rating_details
BolSellerRatingDetail · object[]