# Use the Amazon Review API workflow with multiple ASINs

**Use case:** 

Run one bounded multi-ASIN input and retrieve consistently shaped review records from the default dataset through Apify API, SDK, or MCP workflows.

## Input

```json
{
  "productUrls": [
    {
      "url": "https://www.amazon.com/dp/B0BN7M8CH4"
    }
  ],
  "asins": [
    "B0BLCBRBVZ",
    "B0BN7M8CH4"
  ],
  "maxReviewsPerProduct": 10,
  "scrapeMode": "basic",
  "includeDiagnostics": true
}
```

## Output

```json
{
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Review title",
    "format": "string"
  },
  "text": {
    "label": "Review text",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "reviewCountry": {
    "label": "Review country",
    "format": "string"
  },
  "reviewCountryCode": {
    "label": "Review country code",
    "format": "string"
  },
  "reviewedIn": {
    "label": "Review origin text",
    "format": "string"
  },
  "reviewDateText": {
    "label": "Review date text",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "reviewTimestamp": {
    "label": "Review timestamp",
    "format": "integer"
  },
  "helpfulVotes": {
    "label": "Helpful votes",
    "format": "number"
  },
  "isVerifiedPurchase": {
    "label": "Verified purchase",
    "format": "boolean"
  },
  "isVineReview": {
    "label": "Vine review",
    "format": "boolean"
  },
  "imageUrls": {
    "label": "Image URLs",
    "format": "array"
  },
  "mediaUrls": {
    "label": "Media URLs",
    "format": "array"
  },
  "videoUrls": {
    "label": "Video URLs",
    "format": "array"
  },
  "videoPosterUrls": {
    "label": "Video poster URLs",
    "format": "array"
  },
  "productUrl": {
    "label": "Product URL",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "sourceMarketplace": {
    "label": "Source marketplace",
    "format": "string"
  },
  "sourceCoverage": {
    "label": "Source coverage",
    "format": "string"
  }
}
```

## About this Actor

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