# Collect an Amazon search result product corpus

**Use case:** 

Collect title, brand, price, rating, review count, seller, Prime status, and URL fields from a keyword search result page.

## Input

```json
{
  "searchQuery": "wireless earbuds",
  "asins": [],
  "startUrls": [],
  "country": "US",
  "maxResults": 24,
  "maxSearchPages": 1,
  "scrapeProductDetails": false,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "thumbnail": {
    "label": "Image",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "asin": {
    "label": "ASIN",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "integer"
  },
  "seller": {
    "label": "Seller",
    "format": "string"
  },
  "isPrime": {
    "label": "Prime",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

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