# Amazon Price Monitor Workflow

**Use case:** 

Monitor Amazon search results for price, list price, reviews, availability, Prime status, sellers, and product images.

## Input

```json
{
  "searchQueries": [
    "standing desk",
    "ergonomic chair",
    "desk lamp"
  ],
  "marketplace": "US",
  "maxProductsPerSearch": 50,
  "maxSearchPages": 3,
  "sort": "avg_rating",
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "priceString": {
    "label": "Price String",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "number"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "seller": {
    "label": "Seller",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "isPrime": {
    "label": "Is Prime",
    "format": "boolean"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

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