# Scrape Amazon Products for Any E-commerce Use Case

**Use case:** 

Extract Amazon search results: title, price, original price, rating, review count, Prime badge, ASIN, and image URL across 18+ country domains. Use it for marke

## Input

```json
{
  "queries": [
    "wireless headphones"
  ],
  "category": "all",
  "sortBy": "relevance",
  "maxResults": 10,
  "country": "us",
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Product",
    "format": "text"
  },
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "text"
  },
  "original_price": {
    "label": "Original Price",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "reviews_count": {
    "label": "Reviews",
    "format": "text"
  },
  "is_prime": {
    "label": "Prime",
    "format": "text"
  },
  "seller": {
    "label": "Seller",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Amazon Product Scraper - Prices, Reviews, Pay Per Result](https://apify.com/thirdwatch/amazon-product-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/thirdwatch/amazon-product-scraper) to learn more, explore other use cases, and run it yourself.