# Build an Amazon product pricing watchlist

**Use case:** 

Collect price, list price, discount, availability, and product URL fields for a focused Amazon watchlist that can be compared across listings.

## Input

```json
{
  "searchQuery": "wireless earbuds",
  "asins": [],
  "startUrls": [],
  "country": "US",
  "maxResults": 10,
  "maxSearchPages": 1,
  "scrapeProductDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "listPrice": {
    "label": "List price",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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