# Build an Amazon competitor pricing list

**Use case:** 

Collect product pages for a focused Amazon pricing and availability review, including title, price, listPrice, currency, availability, and url.

## Input

```json
{
  "searchQuery": "wireless earbuds",
  "asins": [],
  "startUrls": [],
  "country": "US",
  "maxResults": 12,
  "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.