# Scrape Amazon Search Results for Any Keyword

**Use case:** 

Turn any Amazon search into structured data — titles, prices, ratings, reviews, and images. No code, no API key needed.

## Input

```json
{
  "categoryUrls": [
    {
      "url": "https://www.amazon.com/s?k=mechanical+keyboard"
    }
  ],
  "maxItemsPerStartUrl": 100,
  "scrapeProductDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "inStock": {
    "label": "In stock",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "thumbnailImage": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

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