# Surface the Lowest-Rated Trip.com Reviews

**Use case:** 

Pull Trip.com reviews sorted from lowest to highest rating for one hotel — a fast way to find complaints that need attention.

## Input

```json
{
  "hotelUrl": "https://www.trip.com/hotels/new-york-hotel-detail-2192841/",
  "maxReviews": 250,
  "sortBy": "ratingLowToHigh",
  "cutoffDate": ""
}
```

## Output

```json
{
  "id": {
    "label": "Id",
    "format": "number"
  },
  "hotelId": {
    "label": "Hotel id",
    "format": "number"
  },
  "usefulCount": {
    "label": "Useful count",
    "format": "number"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "content": {
    "label": "Content",
    "format": "string"
  },
  "translatedContent": {
    "label": "Translated content",
    "format": "string"
  },
  "checkInDate": {
    "label": "Check in date",
    "format": "string"
  },
  "createDate": {
    "label": "Create date",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingMax": {
    "label": "Rating max",
    "format": "number"
  },
  "commentLevel": {
    "label": "Comment level",
    "format": "string"
  },
  "roomTypeName": {
    "label": "Room type name",
    "format": "string"
  },
  "travelType": {
    "label": "Travel type",
    "format": "number"
  },
  "travelTypeText": {
    "label": "Travel type text",
    "format": "string"
  },
  "translateFromRealReview": {
    "label": "Translate from real review",
    "format": "string"
  },
  "aggregateReviewScore": {
    "label": "Aggregate review score",
    "format": "number"
  },
  "aggregateReviewDescription": {
    "label": "Aggregate review description",
    "format": "string"
  },
  "aggregateReviewCount": {
    "label": "Aggregate review count",
    "format": "number"
  },
  "aggregateReviewSubScore": {
    "label": "Aggregate review sub score",
    "format": "array"
  }
}
```

## About this Actor

This example demonstrates how to use [Trip.com & Ctrip Reviews Scraper](https://apify.com/knagymate/trip-com-reviews-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/knagymate/trip-com-reviews-scraper) to learn more, explore other use cases, and run it yourself.