# Amazon Product Scraper — Price & Ratings

**Use case:** 

Scrape Amazon products by keyword or ASIN: title, price, rating and reviews. For price tracking and e-commerce research.

## Input

```json
{
  "searchKeyword": "echo dot",
  "productUrls": [
    {
      "url": "https://www.amazon.com/dp/B09B8V1LZ3"
    }
  ],
  "asins": [
    "B09B8V1LZ3"
  ],
  "domain": "amazon.com",
  "maxSearchResults": 20,
  "scrapeReviews": false,
  "maxReviews": 20,
  "useProxy": true,
  "requestTimeoutSecs": 90
}
```

## Output

```json
{
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "rating": {
    "label": "Rating"
  },
  "reviews": {
    "label": "Reviews"
  },
  "asin": {
    "label": "Asin"
  },
  "url": {
    "label": "Url"
  },
  "image": {
    "label": "Image"
  }
}
```

## About this Actor

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