# Track Amazon Product Price & Availability

**Use case:** 

Monitor any Amazon product's price, MRP, discount, and stock status from its URL — with a clear in-stock or currently-unavailable status.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://www.amazon.in/dp/B09KPSZJMV"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "IN"
  }
}
```

## Output

```json
{
  "inputUrl": {
    "label": "Input URL",
    "format": "link"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "requestedAsin": {
    "label": "Requested ASIN",
    "format": "text"
  },
  "asin": {
    "label": "Returned ASIN",
    "format": "text"
  },
  "redirected": {
    "label": "Variant substituted?",
    "format": "boolean"
  },
  "redirectNote": {
    "label": "Redirect note",
    "format": "text"
  },
  "availability": {
    "label": "Availability",
    "format": "text"
  },
  "status": {
    "label": "Status",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "listPrice": {
    "label": "MRP",
    "format": "number"
  },
  "discountPercent": {
    "label": "Discount %",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "inStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "stars": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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