# Amazon Trustpilot Reviews Scraper

**Use case:** 

Scrape Amazon customer reviews and TrustScore from Trustpilot: star ratings, review text, authors, dates and company replies. Export to JSON, CSV or Excel.

## Input

```json
{
  "maxItems": 1,
  "withReviews": true,
  "companyDomains": [
    "amazon.com"
  ],
  "trustpilotUrls": [],
  "maxReviews": 100
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image",
    "format": "image"
  },
  "recordType": {
    "label": "Type",
    "format": "text"
  },
  "companyName": {
    "label": "Company",
    "format": "text"
  },
  "domain": {
    "label": "Domain",
    "format": "text"
  },
  "websiteUrl": {
    "label": "Website",
    "format": "link"
  },
  "trustScore": {
    "label": "Trust Score",
    "format": "number"
  },
  "rating": {
    "label": "Stars",
    "format": "number"
  },
  "reviewsCount": {
    "label": "Reviews",
    "format": "number"
  },
  "reviewsLast12Months": {
    "label": "Reviews 12mo",
    "format": "number"
  },
  "ratingDistribution": {
    "label": "Rating Distribution",
    "format": "object"
  },
  "categories": {
    "label": "Categories",
    "format": "array"
  },
  "categoryPath": {
    "label": "Category Path",
    "format": "text"
  },
  "isClaimed": {
    "label": "Claimed",
    "format": "boolean"
  },
  "claimedDate": {
    "label": "Claimed Date",
    "format": "text"
  },
  "verifiedByGoogle": {
    "label": "Verified by Google",
    "format": "boolean"
  },
  "verifiedPaymentMethod": {
    "label": "Verified Payment",
    "format": "boolean"
  },
  "verifiedUserIdentity": {
    "label": "Verified Identity",
    "format": "boolean"
  },
  "isClosed": {
    "label": "Closed",
    "format": "boolean"
  },
  "isTemporarilyClosed": {
    "label": "Temporarily Closed",
    "format": "boolean"
  },
  "replyPercentage": {
    "label": "Reply %",
    "format": "number"
  },
  "locationsCount": {
    "label": "Locations",
    "format": "number"
  },
  "consumerAlerts": {
    "label": "Consumer Alerts",
    "format": "array"
  },
  "email": {
    "label": "Email",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "zipCode": {
    "label": "Zip Code",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "author": {
    "label": "Author",
    "format": "text"
  },
  "authorCountry": {
    "label": "Author Country",
    "format": "text"
  },
  "authorReviewsCount": {
    "label": "Author Reviews",
    "format": "number"
  },
  "title": {
    "label": "Review Title",
    "format": "text"
  },
  "text": {
    "label": "Review Text",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "isVerified": {
    "label": "Verified",
    "format": "boolean"
  },
  "source": {
    "label": "Source",
    "format": "text"
  },
  "likes": {
    "label": "Likes",
    "format": "number"
  },
  "experienceDate": {
    "label": "Experience Date",
    "format": "text"
  },
  "publishedDate": {
    "label": "Published Date",
    "format": "date"
  },
  "updatedDate": {
    "label": "Updated Date",
    "format": "date"
  },
  "reply": {
    "label": "Company Reply",
    "format": "object"
  },
  "trustpilotUrl": {
    "label": "Company URL",
    "format": "link"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "link"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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