# Analyze Amazon product reviews by keyword

**Use case:** 

Search Amazon by keyword and pull review text, star ratings, verified status and ASIN data across multiple products. Analyze customer sentiment at scale.

## Input

```json
{
  "asins": [
    "B07CMS5Q6P"
  ],
  "keyword": "wireless earbuds",
  "maxProducts": 5,
  "maxReviewsPerAsin": 50,
  "includeMediaReviews": true,
  "reviewStars": [],
  "verifiedOnly": true,
  "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.