# Monitor Protein Powder Ratings on Amazon

**Use case:** 

Scrape Amazon protein powder search results with product names, ASINs, prices, ratings, review counts, and product URLs for competitor research.

## Input

```json
{
  "keywords": [
    "protein powder"
  ],
  "categoryOrProductUrls": [
    {
      "url": "https://www.amazon.com/s?k=wireless+mouse"
    }
  ],
  "asins": [
    "B0BCHJ2R7S"
  ],
  "marketplace": "US",
  "language": "AUTO",
  "sortBy": "review-rank",
  "maxItems": 24,
  "maxItemsPerStartUrl": 24,
  "maxSearchPagesPerStartUrl": 1,
  "scrapeProductDetails": false,
  "includeQuestionsCount": false,
  "maxImages": 3,
  "maxRetries": 3,
  "maxConcurrency": 2,
  "requestDelaySecs": 2
}
```

## Output

```json
{
  "recordType": {
    "label": "Record type"
  },
  "asin": {
    "label": "Asin"
  },
  "marketplace": {
    "label": "Marketplace"
  },
  "productUrl": {
    "label": "Product url"
  },
  "title": {
    "label": "Title"
  },
  "currentPrice": {
    "label": "Current price"
  },
  "ratingText": {
    "label": "Rating text"
  },
  "reviewCountText": {
    "label": "Review count text"
  },
  "availabilityText": {
    "label": "Availability text"
  },
  "searchTerm": {
    "label": "Search term"
  },
  "crawledAt": {
    "label": "Crawled at"
  }
}
```

## About this Actor

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