Skip to main content
POST
/
api
/
coolblue
/
products
/coolblue/products
curl --request POST \
  --url https://api.anysite.io/api/coolblue/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@coolblue_product",
    "alias": "<string>",
    "name": "<string>",
    "short_name": "<string>",
    "description": "<string>",
    "highlights": [
      "<string>"
    ],
    "brand": {
      "name": "<string>",
      "@type": "@coolblue_brand",
      "id": "<string>",
      "url": "<string>"
    },
    "image": "<string>",
    "images": [],
    "price": 123,
    "list_price": 123,
    "sales_price": {
      "@type": "@coolblue_product_sales_price",
      "including_vat": 123,
      "excluding_vat": 123
    },
    "currency": "<string>",
    "availability": "<string>",
    "availability_state": "<string>",
    "is_in_stock": true,
    "condition": "<string>",
    "rating": 123,
    "best_rating": 123,
    "review_count": 123,
    "review_meta": {
      "@type": "@coolblue_product_review_meta",
      "average_rating": 123,
      "count": 123,
      "images": [],
      "rating_per_category": [],
      "count_per_rating": []
    },
    "category": {
      "name": "<string>",
      "@type": "@coolblue_category_ref",
      "id": "<string>",
      "alias": "<string>",
      "url": "<string>"
    },
    "breadcrumbs": [],
    "product_type": {
      "@type": "@coolblue_product_type",
      "id": 123,
      "slug": "<string>",
      "singular_name": "<string>",
      "plural_name": "<string>",
      "image": "<string>"
    },
    "sub_product_type_id": 123,
    "pros": [
      "<string>"
    ],
    "cons": [
      "<string>"
    ],
    "included_in_box": [
      "<string>"
    ],
    "manual": {
      "url": "<string>",
      "@type": "@coolblue_product_manual",
      "size_bytes": 123
    },
    "energy_label": {
      "@type": "@coolblue_energy_label",
      "level": "<string>",
      "version": "<string>",
      "image": "<string>",
      "specification_url": "<string>"
    },
    "expected_release_date": "<string>",
    "is_leasable": true,
    "is_composed_product": true,
    "cross_sell_only": true,
    "is_part_of_closed_community": true,
    "has_accessories": true,
    "has_product_support_hub": true,
    "has_usb_c_charger_included": true,
    "alternatives": [
      {
        "@type": "@coolblue_product_ref",
        "id": "<string>",
        "name": "<string>",
        "url": "<string>",
        "image": "<string>",
        "price": 123
      }
    ],
    "second_chance": {
      "@type": "@coolblue_product_second_chance",
      "id": "<string>",
      "sales_price": {
        "@type": "@coolblue_product_sales_price",
        "including_vat": 123,
        "excluding_vat": 123
      }
    },
    "subscription": {},
    "promotional_content": {
      "@type": "@coolblue_product_promotion",
      "label": {
        "label": "<string>",
        "@type": "@coolblue_product_promo_label",
        "details": {
          "@type": "@coolblue_product_promo_details",
          "title": "<string>",
          "explanation": "<string>"
        }
      },
      "icon": {
        "@type": "@coolblue_product_promo_icon",
        "alt_text": "<string>",
        "image": "<string>",
        "details": {
          "@type": "@coolblue_product_promo_details",
          "title": "<string>",
          "explanation": "<string>"
        }
      },
      "boxes": [
        {
          "@type": "@coolblue_product_promo_box",
          "id": "<string>",
          "location": "<string>",
          "title": "<string>",
          "text_markdown": "<string>",
          "image": "<string>"
        }
      ]
    },
    "sub_products": [
      {
        "product": {
          "@type": "@coolblue_sub_product_ref",
          "id": "<string>",
          "name": "<string>",
          "url": "<string>",
          "image": "<string>",
          "price": 123
        },
        "@type": "@coolblue_sub_product",
        "quantity": 123,
        "is_main_product": true
      }
    ],
    "url": "<string>",
    "gtin": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Coolblue product id or a product URL containing it

Minimum string length: 1
Examples:

"886497"

"https://www.coolblue.nl/product/886497/nintendo-switch-oled-wit.html"

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_product
alias
string | null
name
string | null
short_name
string | null
description
string | null
highlights
string[] | null
brand
CoolblueBrand · object
image
string | null
images
string[]
price
number | null
list_price
number | null
sales_price
CoolblueProductSalesPrice · object
currency
string | null
availability
string | null
availability_state
string | null
is_in_stock
boolean | null
condition
string | null
rating
number | null
best_rating
number | null
review_count
integer | null
review_meta
CoolblueProductReviewMeta · object
category
CoolblueCategoryRef · object
breadcrumbs
CoolblueCategoryRef · object[]
product_type
CoolblueProductType · object
sub_product_type_id
integer | null
pros
string[] | null
cons
string[] | null
included_in_box
string[] | null
manual
CoolblueProductManual · object
energy_label
CoolblueEnergyLabel · object
expected_release_date
string | null
is_leasable
boolean | null
is_composed_product
boolean | null
cross_sell_only
boolean | null
is_part_of_closed_community
boolean | null
has_accessories
boolean | null
has_product_support_hub
boolean | null
has_usb_c_charger_included
boolean | null
alternatives
CoolblueProductRef · object[] | null
second_chance
CoolblueProductSecondChance · object
subscription
Subscription · object
promotional_content
CoolblueProductPromotion · object
sub_products
CoolblueSubProduct · object[] | null
url
string | null
gtin
string | null