# Monitor Amazon product prices and reviews

**Use case:** 

Monitor Amazon search results for product prices, ratings, reviews, ASINs, and offer changes.

## Input

```json
{
  "searchQuery": "wireless earbuds",
  "amazonDomain": "amazon.com",
  "maxProducts": 10,
  "sortBy": "relevance",
  "fetchDetails": false,
  "trackBestsellerRank": false,
  "alertRankThreshold": 50,
  "enableAiAnalysis": false,
  "llmProvider": "openrouter",
  "ollamaBaseUrl": "http://localhost:11434",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "url": {
    "label": "Product URL",
    "format": "string"
  },
  "title": {
    "label": "Product title",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews_count": {
    "label": "Reviews count",
    "format": "integer"
  },
  "bestseller_rank": {
    "label": "Best Sellers Rank",
    "format": "integer"
  },
  "rank_change": {
    "label": "Rank change",
    "format": "integer"
  },
  "is_prime": {
    "label": "Is Prime",
    "format": "boolean"
  }
}
```

## About this Actor

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