# Lowest-rated Trip.com reviews

**Use case:** 

Fetch a bounded snapshot of the lowest-rated public reviews for one Trip.com hotel.

## Input

```json
{
  "hotelUrls": [
    {
      "url": "https://www.trip.com/hotels/tokyo-hotel-detail-129054778/koko-hotel-tokyo-nishikasai/"
    }
  ],
  "hotelIds": [
    "129054778"
  ],
  "maxReviewsPerHotel": 10,
  "sortBy": "ratingLow",
  "includeHotelSummary": false,
  "includeImages": false,
  "locale": "en-US",
  "currency": "USD",
  "proxyConfiguration": {
    "useApifyProxy": false
  },
  "resumeFromCheckpoint": false,
  "maxRuntimeSecs": 120
}
```

## Output

```json
{
  "hotelId": {
    "label": "Hotel ID",
    "format": "string"
  },
  "hotelName": {
    "label": "Hotel name",
    "format": "string"
  },
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "ratingText": {
    "label": "Rating text",
    "format": "string"
  },
  "reviewDate": {
    "label": "Review date",
    "format": "string"
  },
  "reviewText": {
    "label": "Review text",
    "format": "string"
  },
  "translatedReviewText": {
    "label": "Translated review text",
    "format": "string"
  },
  "travelType": {
    "label": "Travel type",
    "format": "string"
  },
  "roomType": {
    "label": "Room type",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer name",
    "format": "string"
  },
  "reviewerCountry": {
    "label": "Reviewer country",
    "format": "string"
  },
  "ownerResponseText": {
    "label": "Owner response",
    "format": "string"
  },
  "reviewsAvailable": {
    "label": "Reviews available",
    "format": "integer"
  },
  "reviewsExtracted": {
    "label": "Reviews extracted",
    "format": "integer"
  },
  "hasMoreReviews": {
    "label": "Has more reviews",
    "format": "boolean"
  },
  "warnings": {
    "label": "Warnings",
    "format": "array"
  },
  "sourceUrl": {
    "label": "Source URL",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "string"
  }
}
```

## About this Actor

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