# Amazon Product Review API Alternative with Structured Data

**Use case:** 

Use Amazon Product Scraper for amazon product with structured, source-linked results for AI-agent research, comparison, monitoring, and lead generation.

## Input

```json
{
  "searchQuery": "amazon product review",
  "asins": [],
  "startUrls": [],
  "country": "US",
  "maxResults": 20,
  "maxSearchPages": 20,
  "scrapeProductDetails": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Image",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "seller": {
    "label": "Seller",
    "format": "string"
  },
  "isPrime": {
    "label": "Prime",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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