# Base de données produits Cdiscount (France)

**Use case:** 

Construisez une base de données produits Cdiscount : URL, code produit, marque, specs, variantes, EAN et catégories. Pour comparateur de prix, enrichissement de catalogue ou données d'entraînement IA.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.cdiscount.com/search/10/smartphone.html"
    }
  ],
  "keyword": "smartphone",
  "maxItems": 400,
  "maxPages": 25,
  "includeSponsored": true,
  "numberOfSponsoredOffers": 9,
  "includeReviews": false,
  "maxReviewsPerProduct": 25,
  "reviewOrderBy": 2
}
```

## Output

```json
{
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "productCode": {
    "label": "Product code",
    "format": "string"
  },
  "productName": {
    "label": "Product name",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "wasPrice": {
    "label": "Was price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "averageRating": {
    "label": "Average rating",
    "format": "number"
  },
  "ratingCount": {
    "label": "Rating count",
    "format": "number"
  },
  "sellerName": {
    "label": "Seller name",
    "format": "string"
  },
  "sellerRating": {
    "label": "Seller rating",
    "format": "number"
  },
  "sellerSalesCount": {
    "label": "Seller sales count",
    "format": "number"
  },
  "offerId": {
    "label": "Offer ID",
    "format": "string"
  },
  "categoryId": {
    "label": "Category ID",
    "format": "number"
  },
  "departmentId": {
    "label": "Department ID",
    "format": "number"
  },
  "condition": {
    "label": "Condition",
    "format": "string"
  },
  "freeShipping": {
    "label": "Free shipping",
    "format": "string"
  },
  "imageUrl": {
    "label": "Image URL",
    "format": "string"
  },
  "isSponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "categoryBreadcrumbs": {
    "label": "Category breadcrumbs",
    "format": "string"
  },
  "inStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "fetchedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Cdiscount Scraper [From $3/1k💰] | Prices & Reviews | Sellers](https://apify.com/ahmed_jasarevic/cdiscount-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ahmed_jasarevic/cdiscount-scraper.md) to learn more, explore other use cases, and run it yourself.


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/ahmed_jasarevic/cdiscount-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
