# ROSSMANN Product - Prices, Reviews & Specials

**Use case:** 

Scrape ROSSMANN.de. Search/URL. Get price, discount, unit price, pack size & full reviews with rating breakdown for drugstore products.

## Input

```json
{
  "mode": "search",
  "searchTerm": "shampoo",
  "specialsCategory": "",
  "brands": [],
  "sortBy": "RELEVANCE",
  "urls": [
    "https://www.rossmann.de/de/search?text=shampoo"
  ],
  "fetchDetails": false,
  "fetchReviews": true,
  "maxReviewsPerProduct": 20,
  "maxItems": 20,
  "proxy": {
    "useApifyProxy": true
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "productId": {
    "label": "Article No.",
    "format": "text"
  },
  "ean": {
    "label": "EAN",
    "format": "text"
  },
  "name": {
    "label": "Product",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "originalPrice": {
    "label": "Original price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "unitPrice": {
    "label": "Unit price",
    "format": "number"
  },
  "unitPriceUnit": {
    "label": "Unit",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "isOnSpecial": {
    "label": "On special",
    "format": "boolean"
  },
  "stockLevelStatus": {
    "label": "Stock",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "image": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

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