# MediaMarkt.de Product Scraper - Prices, Offers & Reviews

**Use case:** 

Scrape MediaMarkt DE. Search/URL + filters. Get price, original price, discount amount/% for electronics.

## Input

```json
{
  "mode": "search",
  "searchTerm": "notebook",
  "brands": [],
  "sortBy": "RELEVANCE",
  "urls": [
    "https://www.mediamarkt.de/de/search.html?query=notebook"
  ],
  "fetchDetails": false,
  "fetchReviews": true,
  "maxReviewsPerProduct": 10,
  "maxItems": 20,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "DE"
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "productId": {
    "label": "Product id",
    "format": "text"
  },
  "ean": {
    "label": "EAN",
    "format": "text"
  },
  "name": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "isOnSpecial": {
    "label": "On offer",
    "format": "boolean"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "onlineAvailable": {
    "label": "Online available",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "image": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

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