Skip to main content
POST
/
api
/
coolblue
/
categories
/
products
/coolblue/categories/products
curl --request POST \
  --url https://api.anysite.io/api/coolblue/categories/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "category": "<string>",
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@coolblue_category_product",
    "alias": "<string>",
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
category
string
required

Category numeric id, URL slug, or full category URL. Accepts top-level product categories (full inventory) as well as deeper facet paths like brand or spec sub-pages (e.g. 'mobiele-telefoons/smartphones/apple') which return the products highlighted on the corresponding facet page.

Minimum string length: 1
Examples:

"2037"

"consoles"

"/consoles"

"https://www.coolblue.nl/laptops"

"mobiele-telefoons/smartphones/apple/apple-iphone-15"

count
integer
required

Max number of results

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:@coolblue_category_product
alias
string | null
url
string | null