# Cdiscount Scraper: Products, Marketplace Sellers & Reviews

**Use case:** 

Scrape Cdiscount.com. Search/URL + filters. Get price, seller info, specs, availability, ratings & reviews for marketplace products.

## Input

```json
{
  "mode": "search",
  "searchWord": "telephone",
  "filterIds": [],
  "sortBy": "relevance",
  "urls": [
    "https://www.cdiscount.com/telephonie/telephone-mobile/l-14404.html"
  ],
  "fetchDetails": true,
  "maxItems": 5,
  "incrementalMode": false,
  "emitUnchanged": false,
  "emitExpired": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "FR"
  },
  "maxNotifyListings": 20
}
```

## Output

```json
{
  "id": {
    "label": "ID",
    "format": "text"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "changeType": {
    "label": "Change type (incremental mode)",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "previewImage": {
    "label": "Image",
    "format": "image"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "originalPrice": {
    "label": "Was price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "promoLabel": {
    "label": "Promo",
    "format": "text"
  },
  "isAvailable": {
    "label": "Available",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "# Reviews",
    "format": "number"
  },
  "sellerName": {
    "label": "Seller",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "changedFields": {
    "label": "Changed fields (incremental mode)",
    "format": "array"
  },
  "firstSeenAt": {
    "label": "First seen (incremental mode)",
    "format": "date"
  },
  "lastSeenAt": {
    "label": "Last seen (incremental mode)",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [Cdiscount Scraper: Products, Marketplace Sellers & Reviews](https://apify.com/abotapi/cdiscount-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/cdiscount-scraper) to learn more, explore other use cases, and run it yourself.