# Cdiscount Product ## Overview | Property | Value | |----------|-------| | **Status** | active | | **Method** | `GET` | | **Endpoint** | `/v2/cdiscount/product` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 2 credits per call | | **Documentation** | https://www.piloterr.com/library/cdiscount-product | ## Description Extract full product details from a Cdiscount product page, including price, seller, ratings, specifications, and offers. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/cdiscount/product' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Lookup ACEMAGIC gaming laptop ```json { "id": "aaaph06865", "ean": "0683370375062", "url": "https://www.cdiscount.com/informatique/ordinateurs-pc-portables/acemagic-pc-portables-gaming/f-1070992-aaaph06865.html", "brand": "ACEMAGIC", "price": 429.99, "title": "ACEMAGIC PC Portables Gaming - 15.6\" FHD, AMD Ryzen 7 5700U(8C/16T, 4,3GHz),16Go RAM DDR4, 512Go M.2 SSD, WiFi 6, BT5.2, HDMI,Gris", "images": [ "https://www.cdiscount.com/pdt2/8/6/5/1/700x700/aaaph06865/rw/acemagic-pc-portables-gaming.jpg" ], "rating": 4, "seller": { "id": 405259, "name": "BOOMING", "rating": 5, "sales_count": 1847, "reviews_count": 20 }, "is_cdav": true, "currency": "EUR", "offer_id": 4258700481, "condition": "Neuf", "description": "Portable gaming AMD Ryzen 7 5700U, 16Go RAM, 512Go SSD.", "is_available": true, "other_offers": { "total_offers": 1, "lowest_price_new": 459.9, "new_offers_count": 1, "lowest_price_used": null, "used_offers_count": 0 }, "delivery_info": "Livraison gratuite | Expédié depuis: FRANCE", "reviews_count": 2, "original_price": 499.9, "multiple_offer_url": "https://www.cdiscount.com/mp-352880-auc3283981039048.html", "multiple_offer_text": "2 offres neuves", "multiple_offer_starting_price": 9.24 } ``` ## Documentation ## Overview Extract comprehensive product information from any Cdiscount product page. The API returns pricing, seller details, product specifications, rating, availability, images, and links to competitor offers. ## Quickstart ``` GET https://api.piloterr.com/v2/cdiscount/product?query=https://www.cdiscount.com/informatique/ordinateurs-pc-portables/acemagic-pc-portables-gaming/f-1070992-aaaph06865.html ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Full Cdiscount product page URL | ## Response fields | Field | Type | Description | |---|---|---| | `id` | string | Cdiscount product ID | | `price` | number | Current price in EUR | | `title` | string | Product title | | `seller.name` | string | Seller name | | `rating` | number | Customer rating | | `is_available` | boolean | Stock availability | | `multiple_offer_url` | string | URL to view all marketplace offers | | `specifications` | object | Product specifications | ## Notes - Use `multiple_offer_url` with the Cdiscount Product Offer endpoint to get all sellers. ## Main use cases - Enrich product catalogs with live Cdiscount pricing data - Monitor competitor pricing for dynamic repricing strategies - Build price-tracking tools for Cdiscount products - Extract product specifications for comparison engines