# Amazon Reviews Scraper with Sentiment Analysis

**Use case:** 

Pull and synthesise Amazon reviews for any ASIN into aspect-level sentiment, defect emergence, and a rating breakdown. Structured JSON or CSV output.

## Input

```json
{
  "mode": "reviews",
  "track": [
    "B09X7MPX8L"
  ],
  "asins": [
    "B09X7MPX8L"
  ],
  "searchTerms": [],
  "rankBy": "attention",
  "maxProducts": 50,
  "includeReviewsSample": true,
  "reviewsSamplePerProduct": 100,
  "marketplaces": [
    "amazon.com"
  ],
  "watchlistName": "",
  "deltaWindowDays": 7,
  "asinRevenue": {},
  "product": "",
  "competitors": [],
  "sellerUrls": [],
  "persona": "catalog_operations",
  "outputProfile": "signals",
  "analysisDepth": "standard",
  "explainability": "standard",
  "exportBundles": [],
  "maxRuntimeSeconds": 3600,
  "startUrls": [],
  "productUrls": [],
  "searchQuery": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "reviewIntelligence": {
    "label": "Review Intelligence (deterministic, lexicon-tfidf-v1)",
    "format": "object"
  },
  "sampling": {
    "label": "Sampling Transparency",
    "format": "object"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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