# Trustpilot Reviews Data Extractor

**Use case:** 

Extract customer reviews from Trustpilot. Get review headlines, text, ratings, and user details for analysis and reporting.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.trustpilot.com/review/shopify.com",
      "method": "GET"
    }
  ],
  "limit": 1000
}
```

## Output

```json
{
  "avatar": {
    "label": "Avatar",
    "format": "image"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "date": {
    "label": "Published at",
    "format": "date"
  },
  "reviewId": {
    "label": "Review id",
    "format": "text"
  },
  "ratingValue": {
    "label": "Stars",
    "format": "number"
  },
  "reviewTitle": {
    "label": "Headline",
    "format": "text"
  },
  "reviewText": {
    "label": "Text",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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