# Aggregate Product Data Across Multiple Amazon Regions

**Use case:** 

Collect detailed product information, including variations and seller details, from various Amazon marketplaces globally for international market research. Cons

## Input

```json
{
  "productUrls": [
    "https://www.amazon.co.uk/dp/B0BH4W1L8S",
    "https://www.amazon.de/dp/B0C7W14Y63",
    "https://www.amazon.fr/dp/B0C9C7N84Y"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "proxyCountry": "AUTO",
  "rateLimitDelay": 4
}
```

## Output

```json
{
  "title": {
    "label": "Product Title",
    "format": "text"
  },
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "stars": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "inStock": {
    "label": "In Stock",
    "format": "boolean"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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