# Amazon US New Releases Launch Watch: Beauty and Grocery

**Use case:** 

Reads the Amazon.com New Releases charts for Beauty and Grocery, returning the 25 newest ranked products in each. Run it daily and diff the ASIN set to...

## Input

```json
{
  "categories": [
    "beauty",
    "grocery"
  ],
  "listType": "newReleases",
  "country": "us",
  "maxResults": 25,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ],
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "title": {
    "label": "Product",
    "format": "text"
  },
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviews_count": {
    "label": "Reviews",
    "format": "number"
  },
  "category_slug": {
    "label": "Category",
    "format": "text"
  },
  "list_type": {
    "label": "List",
    "format": "text"
  },
  "country": {
    "label": "Marketplace",
    "format": "text"
  },
  "product_url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Best Sellers Scraper - Top 100 Ranked Products](https://apify.com/thirdwatch/amazon-bestsellers-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/thirdwatch/amazon-bestsellers-scraper) to learn more, explore other use cases, and run it yourself.