Skip to main content
POST
/
api
/
cdiscount
/
products
/cdiscount/products
curl --request POST \
  --url https://api.anysite.io/api/cdiscount/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@cdiscount_product",
    "offer_id": "<string>",
    "url": "<string>",
    "title": "<string>",
    "brand": "<string>",
    "brand_id": "<string>",
    "ean": "<string>",
    "manufacturer_model": "<string>",
    "image": "<string>",
    "images": [],
    "image_count": 123,
    "description": "<string>",
    "short_description": "<string>",
    "price": 123,
    "price_without_vat": 123,
    "currency": "EUR",
    "taxes": [],
    "condition": "<string>",
    "is_available": true,
    "is_free_shipping": true,
    "free_shipping_label": "<string>",
    "seller_name": "<string>",
    "seller_id": "<string>",
    "seller_sales_count": 123,
    "category_id": "<string>",
    "category_path": "<string>",
    "department_id": "<string>",
    "offer_count": 123,
    "new_offer_count": 123,
    "used_offer_count": 123,
    "lowest_new_price": 123,
    "lowest_used_price": 123,
    "energy_grade": "<string>",
    "repairability_index": 123,
    "is_trade_in_eligible": true,
    "related_searches": [],
    "bullet_points": [],
    "specifications": [],
    "variants": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Cdiscount product id (sku) or a product URL containing it

Minimum string length: 1
Examples:

"ip17prom256orang"

"https://www.cdiscount.com/telephonie/telephone-mobile/x/f-14404-ip17prom256orang.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:@cdiscount_product
offer_id
string | null
url
string | null
title
string | null
brand
string | null
brand_id
string | null
ean
string | null
manufacturer_model
string | null
image
string | null
images
string[]
image_count
integer | null
description
string | null
short_description
string | null
price
number | null
price_without_vat
number | null
currency
string
default:EUR
taxes
CdiscountProductTax · object[]
condition
string | null
is_available
boolean | null
is_free_shipping
boolean | null
free_shipping_label
string | null
seller_name
string | null
seller_id
string | null
seller_sales_count
integer | null
category_id
string | null
category_path
string | null
department_id
string | null
offer_count
integer | null
new_offer_count
integer | null
used_offer_count
integer | null
lowest_new_price
number | null
lowest_used_price
number | null
energy_grade
string | null
repairability_index
number | null
is_trade_in_eligible
boolean | null
bullet_points
string[]
specifications
CdiscountProductSpec · object[]
variants
CdiscountProductVariant · object[]