# Amazon Bestseller Research Workflow

**Use case:** 

Compare bestseller products in a chosen Amazon marketplace and category for product sourcing, price tracking, and competitive research.

## Input

```json
{
  "categoryUrls": [
    "https://www.amazon.co.uk/Best-Sellers-Home-Kitchen/zgbs/kitchen/",
    "https://www.amazon.co.uk/Best-Sellers-Electronics/zgbs/electronics/"
  ],
  "marketplace": "UK",
  "maxItems": 80,
  "maxRequestRetries": 6
}
```

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