Skip to main content
POST
/
api
/
bol
/
products
/
search
/bol/products/search
curl --request POST \
  --url https://api.anysite.io/api/bol/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@bol_search_product",
    "name": "<string>",
    "url": "<string>",
    "image": "<string>",
    "brand": "<string>",
    "brand_url": "<string>",
    "price": 123,
    "list_price": 123,
    "condition": "<string>",
    "delivery": "<string>",
    "delivered_within_48h": true,
    "rating": 123,
    "review_count": 123,
    "categories": [],
    "is_sponsored": false
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
keyword
string
required

Search keyword

Minimum string length: 1
Examples:

"playstation"

"koffiezetapparaat"

count
integer
required

Max number of results 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_search_product
name
string | null
url
string | null
image
string | null
brand
string | null
brand_url
string | null
price
number | null
list_price
number | null
condition
string | null
delivery
string | null
delivered_within_48h
boolean | null
rating
number | null
review_count
integer | null
categories
string[]
is_sponsored
boolean
default:false