# Trustpilot one-star review extractor

**Use case:** 

Extract one-star Trustpilot reviews for airline domains to analyze complaints, service issues, and customer sentiment.

## Input

```json
{
  "companyUrls": [
    "ryanair.com",
    "easyjet.com"
  ],
  "maxReviewsPerCompany": 40,
  "stars": [
    "1"
  ],
  "languages": [
    "en"
  ],
  "sort": "recency",
  "date": "",
  "verified": false,
  "withReplies": false,
  "includeCompanyInfo": true
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "text"
  },
  "authorName": {
    "label": "Author",
    "format": "text"
  },
  "rating": {
    "label": "Stars",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "text": {
    "label": "Review",
    "format": "text"
  },
  "publishedDate": {
    "label": "Published",
    "format": "text"
  },
  "country": {
    "label": "Country",
    "format": "text"
  },
  "language": {
    "label": "Language",
    "format": "text"
  },
  "verificationLevel": {
    "label": "Verified",
    "format": "text"
  },
  "reviewUrl": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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