# Scrape Amazon products by keyword

**Use case:** 

Extract Amazon product listings by keyword search from Amazon.com. Structured product data with prices and ratings. Pay per result.

## Input

```json
{
  "mode": "keyword-search",
  "keywords": [
    "laptop"
  ],
  "sellerIds": [],
  "asins": [],
  "startUrls": [],
  "marketplace": "amazon.com",
  "maxResults": 5,
  "maxPages": 3
}
```

## Output

```json
{
  "asin": {
    "label": "ASIN",
    "format": "text"
  },
  "sellerId": {
    "label": "Seller ID",
    "format": "text"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "listPrice": {
    "label": "Was",
    "format": "number"
  },
  "discount": {
    "label": "Discount $",
    "format": "number"
  },
  "discountPct": {
    "label": "Discount %",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "isPrime": {
    "label": "Prime",
    "format": "boolean"
  },
  "isBestSeller": {
    "label": "Best Seller",
    "format": "boolean"
  },
  "isAmazonChoice": {
    "label": "Is amazon choice"
  },
  "sellerName": {
    "label": "Seller Name",
    "format": "text"
  },
  "positiveFeedbackPct": {
    "label": "Pos Feedback %",
    "format": "number"
  },
  "ratingCount": {
    "label": "Rating count"
  },
  "marketplace": {
    "label": "Marketplace",
    "format": "text"
  },
  "mode": {
    "label": "Mode"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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