# Track Top-Selling Competitor Products on Amazon France

**Use case:** 

Gain competitive intelligence by identifying the top-selling products of competitors across various categories on Amazon France. This data is crucial for benchm

## Input

```json
{
  "categoryUrls": [
    "https://www.amazon.fr/gp/bestsellers/computers/ref=zg_bs_computers_sbs_d_rt_bs",
    "https://www.amazon.fr/gp/bestsellers/kitchen/ref=zg_bs_kitchen_sbs_d_rt_bs"
  ],
  "maxItems": 100,
  "scrapeSubcategories": true,
  "maxSubcategoryDepth": 1,
  "proxyCountry": "FR",
  "rateLimitDelay": 2
}
```

## Output

```json
{
  "position": {
    "label": "Rank",
    "format": "number"
  },
  "name": {
    "label": "Product Name",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "url": {
    "label": "Product URL",
    "format": "link"
  },
  "thumbnail": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

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