# Collect Amazon reviews for competitor product feedback

**Use case:** 

Gather review text, ratings, and verified purchase markers from one competitor product to compare buyer reactions.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://www.amazon.com/dp/B0CWXNS552"
    }
  ],
  "asins": [
    "B0CWXNS552"
  ],
  "maxReviews": 5,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "product_title": {
    "label": "Product Title",
    "format": "string"
  },
  "rating": {
    "label": "Star Rating",
    "format": "number"
  },
  "is_verified_purchase": {
    "label": "Verified Purchase",
    "format": "boolean"
  },
  "review_title": {
    "label": "Review Title",
    "format": "string"
  },
  "review_body": {
    "label": "Review Body",
    "format": "string"
  },
  "reviewer_name": {
    "label": "Reviewer Name",
    "format": "string"
  },
  "review_date_iso": {
    "label": "Review Date (ISO 8601)",
    "format": "string"
  },
  "helpful_votes": {
    "label": "Helpful Votes",
    "format": "number"
  },
  "country": {
    "label": "Review Country",
    "format": "string"
  },
  "variant": {
    "label": "Product Variant",
    "format": "string"
  },
  "images": {
    "label": "Review Images",
    "format": "array"
  },
  "product_url": {
    "label": "Product URL",
    "format": "string"
  }
}
```

## About this Actor

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