# Thomann product reviews scraper example

**Use case:** 

Extract customer review text, ratings, dates, authors, helpful votes, and product context from a public Thomann product page.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.thomann.ie/yamaha_hs_5_grey_reviews.htm"
    }
  ],
  "maxReviews": 10,
  "includeAllLanguages": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "text"
  },
  "reviewBody": {
    "label": "Review",
    "format": "text"
  },
  "reviewer": {
    "label": "Reviewer",
    "format": "text"
  },
  "reviewDate": {
    "label": "Date",
    "format": "date"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "aspectRatings": {
    "label": "Aspect ratings",
    "format": "object"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "locale": {
    "label": "Locale",
    "format": "text"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "link"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Thomann Product Reviews Scraper](https://apify.com/automation-lab/thomann-product-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/thomann-product-reviews-scraper) to learn more, explore other use cases, and run it yourself.