# Export Trustpilot Reviews to CSV for Any Company

**Use case:** 

Export any company's reviews to CSV or Excel, not only your own: companyName, reviewRating, reviewTitle, reviewerName, dateOfExperience, reviewUrl.

## Input

```json
{
  "companyUrls": [
    "https://www.trustpilot.com/review/www.booking.com",
    "https://www.trustpilot.com/review/www.shopify.com",
    "https://www.trustpilot.com/review/wise.com"
  ],
  "maxReviewsPerCompany": 2
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "reviewRating": {
    "label": "Rating",
    "format": "integer"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "string"
  },
  "dateOfExperience": {
    "label": "Date of experience",
    "format": "string"
  },
  "isVerifiedReview": {
    "label": "Verified review",
    "format": "boolean"
  },
  "reviewUrl": {
    "label": "Review 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.