# Amazon Positive Reviews Scraper - 4 and 5 Star

**Use case:** 

Scrape a deep sample of positive 4-5 star Amazon reviews for testimonials - review text, ratings, dates and author. Export a clean CSV or JSON.

## Input

```json
{
  "products": [
    "B09B8V1LZ3"
  ],
  "country": "us",
  "starFilter": "positive",
  "sort": "recent",
  "maxReviewsPerAsin": 300,
  "includeTopReviewsFallback": false,
  "stopOnError": false
}
```

## Output

```json
{
  "asin": {
    "label": "🆔 ASIN",
    "format": "string"
  },
  "rating": {
    "label": "⭐ Stars",
    "format": "number"
  },
  "title": {
    "label": "📝 Review title",
    "format": "string"
  },
  "text": {
    "label": "💬 Review text",
    "format": "string"
  },
  "author": {
    "label": "👤 Reviewer",
    "format": "string"
  },
  "date": {
    "label": "📅 Date",
    "format": "string"
  },
  "verified_purchase": {
    "label": "✅ Verified",
    "format": "boolean"
  },
  "vine": {
    "label": "🍃 Vine",
    "format": "boolean"
  },
  "helpful_count": {
    "label": "👍 Helpful votes",
    "format": "integer"
  },
  "country": {
    "label": "🌍 Country",
    "format": "string"
  }
}
```

## About this Actor

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