# 监控竞品在 Trustpilot 的评分与差评分布

**Use case:** 

跨境电商与独立站卖家一次运行对比多个竞品：companyOverallRating、companyRatingLabel、companyTotalReviews 以及 5 到 1 星的 starBreakdown 分布。

## Input

```json
{
  "companyUrls": [
    "https://www.trustpilot.com/review/www.shein.com",
    "https://www.trustpilot.com/review/www.temu.com",
    "https://www.trustpilot.com/review/www.aliexpress.com"
  ],
  "maxReviewsPerCompany": 2
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "companyOverallRating": {
    "label": "Overall rating",
    "format": "number"
  },
  "companyRatingLabel": {
    "label": "Rating label",
    "format": "string"
  },
  "companyTotalReviews": {
    "label": "Total reviews",
    "format": "integer"
  },
  "starBreakdown": {
    "label": "Star breakdown",
    "format": "object"
  },
  "reviewReplies": {
    "label": "Company replies",
    "format": "array"
  },
  "companyUrl": {
    "label": "Company URL",
    "format": "string"
  }
}
```

## About this Actor

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