# Amazon Search Results Scraper

**Use case:** 

Scrape any Amazon search or category into structured product data: title, price, rating, BSR and seller, ranked by demand. JSON or CSV, no login.

## Input

```json
{
  "mode": "search",
  "track": [
    "B09X7MPX8L"
  ],
  "asins": [],
  "searchTerms": [
    "wireless earbuds"
  ],
  "rankBy": "attention",
  "maxProducts": 50,
  "includeReviewsSample": true,
  "reviewsSamplePerProduct": 100,
  "marketplaces": [
    "amazon.com"
  ],
  "watchlistName": "",
  "deltaWindowDays": 7,
  "asinRevenue": {},
  "product": "",
  "competitors": [],
  "sellerUrls": [],
  "persona": "catalog_operations",
  "outputProfile": "signals",
  "analysisDepth": "standard",
  "explainability": "standard",
  "exportBundles": [],
  "maxRuntimeSeconds": 3600,
  "startUrls": [],
  "productUrls": [],
  "searchQuery": "",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "recordType": {
    "label": "Record Type",
    "format": "string"
  },
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "listPrice": {
    "label": "List Price",
    "format": "number"
  },
  "stars": {
    "label": "Stars",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews Count",
    "format": "integer"
  },
  "seller": {
    "label": "Seller (Buy Box)",
    "format": "object"
  },
  "bestsellerRanks": {
    "label": "Bestseller Ranks",
    "format": "array"
  },
  "dataCompleteness": {
    "label": "Data Completeness (the migration weapon)",
    "format": "object"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Product Scraper - BSR, Buybox & Review Monitor](https://apify.com/ryanclinton/amazon-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/ryanclinton/amazon-product-scraper) to learn more, explore other use cases, and run it yourself.