# 5-Star Amazon Reviews - Social Proof Data

**Use case:** 

Only 5-star Amazon reviews with title, text and date: ready-made positive quotes for listings and ads. CSV/JSON export per ASIN.

## Input

```json
{
  "products": [
    "B0DGHMNQ5Z"
  ],
  "country": "us",
  "starFilter": "five_star",
  "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.