# Analyze Amazon review sentiment

**Use case:** 

Extract Amazon's "Customers say" AI summary and aspect-by-aspect sentiment for any product. Structured JSON with ratings, histogram, and full review text.

## Input

```json
{
  "asins": [
    "B09B8V1LZ3",
    "B08XVYZ1Y5"
  ],
  "keyword": "wireless earbuds",
  "maxProducts": 5,
  "maxReviewsPerAsin": 50,
  "includeMediaReviews": true,
  "reviewStars": [],
  "verifiedOnly": false,
  "mediaOnly": false,
  "sortReviewsBy": "default",
  "domain": "amazon.com"
}
```

## Output

```json
{
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "text": {
    "label": "Review",
    "format": "string"
  },
  "date": {
    "label": "Date",
    "format": "string"
  },
  "verifiedPurchase": {
    "label": "Verified",
    "format": "boolean"
  },
  "vineReview": {
    "label": "Vine",
    "format": "boolean"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "variant": {
    "label": "Variant",
    "format": "string"
  },
  "variantAsin": {
    "label": "Variant ASIN",
    "format": "string"
  },
  "authorName": {
    "label": "Author",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  }
}
```

## About this Actor

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