# Monitor Trustpilot Reputation for Any Company

**Use case:** 

Watch a rating move, not just read it: companyOverallRating, companyRatingLabel, companyTotalReviews and the 5 to 1 starBreakdown on every run.

## Input

```json
{
  "companyUrls": [
    "https://www.trustpilot.com/review/wise.com",
    "https://www.trustpilot.com/review/www.klarna.com",
    "https://www.trustpilot.com/review/www.amazon.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.