# Amazon Bestseller Product Rankings

**Use case:** 

Scrape Amazon Best Sellers product rankings with titles, prices, ratings, review counts, Prime status, categories, and URLs.

## Input

```json
{
  "categoryUrls": [
    "https://www.amazon.com/Best-Sellers-Electronics/zgbs/electronics/"
  ],
  "marketplace": "US",
  "maxItems": 50,
  "maxRequestRetries": 5
}
```

## Output

```json
{
  "rank": {
    "label": "#",
    "format": "number"
  },
  "thumbnail": {
    "label": "Image",
    "format": "image"
  },
  "name": {
    "label": "Product"
  },
  "priceString": {
    "label": "Price"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "isPrime": {
    "label": "Prime"
  },
  "categoryName": {
    "label": "Category"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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