# 批量采集 Trustpilot 评论并导出为 CSV

**Use case:** 

输入公司主页链接，单次最多 200 家，导出结构化评论：reviewRating、reviewTitle、reviewerName、dateOfExperience、isVerifiedReview 与 reviewUrl。

## Input

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

## 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.