# Research New Product Launch Data on Amazon

**Use case:** 

Scrape detailed information for recently launched products to understand market reception, initial pricing, and feature sets. Gather intelligence on emerging tr

## Input

```json
{
  "productUrls": [
    "https://www.amazon.com/dp/B0CM8X45J5",
    "https://www.amazon.com/dp/B0CLZ7481L",
    "https://www.amazon.com/dp/B0CMK1X7X5"
  ],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "proxyCountry": "CA",
  "rateLimitDelay": 5
}
```

## 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.