# Amazon Product Analysis Tool

**Use case:** Track competitors

Analyze Amazon products in detail. Extract pricing, product variants, seller data, and ratings to evaluate product opportunities and monitor competing listings.

## Input

```json
{
  "categoryOrProductUrls": [
    {
      "url": "https://www.amazon.com/Sony-WH-1000XM5-Canceling-Headphones-Hands-Free/dp/B09XS7JWHH"
    },
    {
      "url": "https://www.amazon.com/Apple-Generation-Cancelling-Transparency-Personalized/dp/B0CHWRXH8B"
    },
    {
      "url": "https://www.amazon.com/Bose-QuietComfort-Cancelling-Headphones-Bluetooth/dp/B0CCZ26B5V"
    }
  ],
  "maxItemsPerStartUrl": 1,
  "language": "en",
  "proxyCountry": "AUTO_SELECT_PROXY_COUNTRY",
  "maxSearchPagesPerStartUrl": 9999,
  "maxProductVariantsAsSeparateResults": 0,
  "maxOffers": 3,
  "scrapeSellers": true,
  "useCaptchaSolver": false,
  "scrapeProductVariantPrices": true,
  "scrapeProductDetails": true,
  "countryCode": "US",
  "zipCode": "10001",
  "locationDeliverableRoutes": [
    "PRODUCT",
    "SEARCH",
    "OFFERS"
  ]
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews count",
    "format": "number"
  },
  "thumbnailImage": {
    "label": "Picture",
    "format": "string"
  },
  "breadCrumbs": {
    "label": "Categories",
    "format": "string"
  },
  "description": {
    "label": "Description",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "object"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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