# Amazon critical reviews extractor

**Use case:** 

Extract critical Amazon reviews from a product URL with star ratings, review text, helpful votes, dates, authors, and verification flags.

## Input

```json
{
  "asins": [
    "https://www.amazon.com/dp/B09G9FPHY6"
  ],
  "marketplace": "US",
  "maxReviewsPerProduct": 30,
  "sort": "helpful",
  "filterByStars": "critical",
  "maxRequestRetries": 2
}
```

## Output

```json
{
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "productName": {
    "label": "Product",
    "format": "text"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "isVerifiedPurchase": {
    "label": "Verified",
    "format": "boolean"
  },
  "helpfulVotes": {
    "label": "Helpful",
    "format": "number"
  },
  "body": {
    "label": "Review Text",
    "format": "text"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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