# Trustpilot Amazon Reviews Scraper

**Use case:** 

Scrape Amazon reviews from Trustpilot with reviewer name, country, rating, review title, and text. Export structured review data to JSON or CSV.

## Input

```json
{
  "startUrl": "https://www.trustpilot.com/review/www.amazon.com",
  "maxItems": 50
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "image"
  },
  "reviewerName": {
    "label": "Reviewer Name",
    "format": "text"
  },
  "reviewerCountry": {
    "label": "Reviewer Country",
    "format": "text"
  },
  "totalReviewsByReviewer": {
    "label": "Total Reviews By Reviewer",
    "format": "text"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "reviewTitle": {
    "label": "Review Title",
    "format": "text"
  },
  "reviewText": {
    "label": "Review Text",
    "format": "text"
  },
  "reviewDate": {
    "label": "Review Date",
    "format": "text"
  },
  "dateOfExperience": {
    "label": "Date Of Experience",
    "format": "date"
  },
  "isVerified": {
    "label": "Is Verified",
    "format": "text"
  },
  "helpfulCount": {
    "label": "Helpful Count",
    "format": "text"
  },
  "response": {
    "label": "Response",
    "format": "text"
  },
  "reviewUrl": {
    "label": "Review Url",
    "format": "link"
  },
  "businessDomain": {
    "label": "Business Domain",
    "format": "text"
  },
  "businessName": {
    "label": "Business Name",
    "format": "text"
  },
  "sourceUrl": {
    "label": "Source Url",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Trustpilot Reviews Scraper](https://apify.com/parseforge/trustpilot-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/trustpilot-reviews-scraper) to learn more, explore other use cases, and run it yourself.