# Amazon Product Data API for AI Shopping Agents

**Use case:** 

Structured, real-time Amazon product data for any ASIN set, ready to feed an AI shopping assistant's price comparisons and spec lookups via JSON.

## Input

```json
{
  "asins": [
    "B0CHX1W1XY",
    "B0CHX2RQCJ"
  ],
  "searchQueries": [
    "wireless earbuds"
  ],
  "domain": "com",
  "maxItems": 20,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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