Skip to main content
POST
/
api
/
coolblue
/
products
/
search
/coolblue/products/search
curl --request POST \
  --url https://api.anysite.io/api/coolblue/products/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "keyword": "<string>",
  "count": 12,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@coolblue_search_product",
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "image": "<string>",
    "price": 123,
    "list_price": 123,
    "currency": "<string>",
    "rating": 123,
    "review_count": 123
  }
]

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:

"usb kabel"

"iphone 15"

"monitor 27 inch"

count
integer
required

Max number of results to return

Required range: 1 <= x <= 24
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@coolblue_search_product
alias
string | null
name
string | null
url
string | null
image
string | null
price
number | null
list_price
number | null
currency
string | null
rating
number | null
review_count
integer | null