# Amazon Critical Review Extractor

**Use case:** 

Extract detailed critical customer reviews from Amazon, including ratings, text, dates, and helpful vote counts for specific products.

## Input

```json
{
  "start_urls": [
    {
      "url": "https://www.amazon.in/LOLARAN-ricaricabile-professionale-rilevatore-impermeabile/dp/B0CHVGJFP5"
    }
  ],
  "max_reviews_per_product": 0,
  "max_pages_per_product": 40,
  "reviewer_type": "all_reviews",
  "filter_by_star": "critical",
  "fallback_marketplaces": "amazon.it",
  "use_proxy": true,
  "proxy_country": "IT",
  "max_retries": 5,
  "max_concurrency": 3,
  "delay_min_seconds": 0,
  "delay_max_seconds": 0
}
```

## Output

```json
{
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "product_title": {
    "label": "Product",
    "format": "text"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "text"
  },
  "review_id": {
    "label": "Review ID",
    "format": "text"
  },
  "reviewer_name": {
    "label": "Reviewer",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "review_country": {
    "label": "Country",
    "format": "text"
  },
  "review_date": {
    "label": "Review date",
    "format": "text"
  },
  "verified_purchase": {
    "label": "Verified",
    "format": "boolean"
  },
  "variant": {
    "label": "Variant",
    "format": "text"
  },
  "body": {
    "label": "Review text",
    "format": "text"
  },
  "helpful_votes": {
    "label": "Helpful votes",
    "format": "number"
  },
  "images": {
    "label": "Images",
    "format": "array"
  },
  "review_url": {
    "label": "Review URL",
    "format": "link"
  },
  "page_number": {
    "label": "Page",
    "format": "number"
  },
  "source_url": {
    "label": "Source URL",
    "format": "link"
  },
  "scraped_at": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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