# Track Amazon product prices and ratings

**Use case:** 

Extract price, rating, review count, availability, seller and ASIN for any Amazon product URL. Clean JSON/CSV for price tracking and market research.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.amazon.com/dp/B07DF46NW9"
    },
    {
      "url": "https://www.amazon.com/dp/B09JQMJHXY"
    },
    {
      "url": "https://www.amazon.com/dp/B0BDHWDR12"
    }
  ],
  "includeNotFound": false,
  "canaryMode": false
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "string"
  },
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "shipsFrom": {
    "label": "Ships From",
    "format": "string"
  },
  "soldBy": {
    "label": "Sold By",
    "format": "string"
  },
  "sellerId": {
    "label": "Seller ID",
    "format": "string"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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