# Scrape Amazon Reviews: Export to CSV or Excel API

**Use case:** 

Scrape Amazon reviews and extract valuable customer feedback. Download verified product ratings, review text, and images directly to a CSV or Excel file.

## Input

```json
{
  "startUrls": [],
  "keywords": [
    "electronic"
  ],
  "asinList": [],
  "countryCode": "US",
  "scrapeReviews": true,
  "maxReviewPages": 2,
  "sortReviewsBy": "recent",
  "filterByRatings": [
    "1",
    "2",
    "critical"
  ],
  "reviewsFilterByKeywords": [],
  "reviewsCutoffDate": "2024-01-01",
  "includeOtherCountriesReviews": false,
  "scrapeProductDetails": true,
  "maxProductsPerKeyword": 20,
  "onlyInStock": false,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "type": {
    "label": "Type"
  },
  "asin": {
    "label": "Asin"
  },
  "title": {
    "label": "Title"
  },
  "price": {
    "label": "Price"
  },
  "rating": {
    "label": "Rating"
  },
  "reviewCount": {
    "label": "Review count"
  },
  "body": {
    "label": "Body"
  },
  "reviewer": {
    "label": "Reviewer"
  },
  "date": {
    "label": "Date"
  }
}
```

## About this Actor

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