# Track best selling electronics on Amazon India

**Use case:** 

Pulls the Best Sellers ranking for the electronics category on amazon.in with rank, ASIN, title, price, rating and review count on every row. Run it on a schedule and you have a daily snapshot of which products are climbing, which is the cheapest way to spot a category trend before it reaches a paid research tool. Capped at 50 rows.

## Input

```json
{
  "mode": "bestsellers",
  "search": [
    "wireless headphones",
    "yoga mat"
  ],
  "asins": [
    "B09XS7JWHH",
    "https://www.amazon.com/dp/B08N5WRWNW"
  ],
  "category": [
    "electronics"
  ],
  "sellerIds": [
    "A2L77EE7U53NWQ"
  ],
  "marketplace": "in",
  "maxItems": 50,
  "maxPagesPerQuery": 1,
  "maxConcurrency": 8,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "type": {
    "label": "Item type",
    "format": "text"
  },
  "mode": {
    "label": "Mode",
    "format": "text"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "text"
  },
  "rank": {
    "label": "Rank",
    "format": "number"
  },
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "brand": {
    "label": "Brand",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "listPrice": {
    "label": "List price",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "keyword": {
    "label": "Keyword",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/automation_craft/amazon-data-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
