# Scrape TripAdvisor 1-star reviews & complaints

**Use case:** 

Isolate 1-2 star reviews to mine complaints. Returns rating, title, text and date for reputation and CX analysis.

## Input

```json
{
  "startUrls": [
    "https://www.tripadvisor.com/Hotel_Review-g60763-d93589-Reviews-The_Michelangelo_Hotel-New_York_City_New_York.html"
  ],
  "maxReviewsPerPlace": 25,
  "stripPersonalData": true,
  "minRating": 1,
  "maxRating": 2,
  "sortOutput": "newest",
  "monitorMode": false,
  "alertOnNewReview": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "diagnose": false
}
```

## Output

```json
{
  "place_name": {
    "label": "Place",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "text": {
    "label": "Review",
    "format": "string"
  },
  "published_date": {
    "label": "Published",
    "format": "string"
  },
  "stay_date": {
    "label": "Stay/visit",
    "format": "string"
  },
  "trip_type": {
    "label": "Trip type",
    "format": "string"
  },
  "helpful_votes": {
    "label": "Helpful",
    "format": "integer"
  },
  "language": {
    "label": "Lang",
    "format": "string"
  },
  "review_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Tripadvisor Reviews Scraper — Most Comprehensive](https://apify.com/scrapersdelight/tripadvisor-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/tripadvisor-reviews-scraper) to learn more, explore other use cases, and run it yourself.