# Amazon Product Scraper for Keyword Research

**Use case:** 

Scrape Amazon product listings by keyword with prices, ratings, reviews, sellers, availability, and images for market research.

## Input

```json
{
  "searchQueries": [
    "wireless earbuds",
    "portable monitor"
  ],
  "marketplace": "US",
  "maxProductsPerSearch": 25,
  "maxSearchPages": 2,
  "sort": "relevance",
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  },
  "name": {
    "label": "Name",
    "format": "string"
  },
  "priceString": {
    "label": "Price String",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review Count",
    "format": "number"
  },
  "availability": {
    "label": "Availability",
    "format": "string"
  },
  "seller": {
    "label": "Seller",
    "format": "string"
  },
  "brand": {
    "label": "Brand",
    "format": "string"
  },
  "isPrime": {
    "label": "Is Prime",
    "format": "boolean"
  },
  "url": {
    "label": "Url",
    "format": "string"
  }
}
```

## About this Actor

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