# Bangkok Hotel Reviews from Chinese Tourists (Trip.com)

**Use case:** 

See what Chinese tourists say about Bangkok hotels: scrape Trip.com and Ctrip reviews with ratings, travel type and English translation. $4/1K.

## Input

```json
{
  "startUrls": [
    "https://www.trip.com/hotels/bangkok-hotel-detail-995162/mandarin-oriental-bangkok/",
    "https://www.trip.com/hotels/bangkok-hotel-detail-996022/shangri-la-hotel-bangkok/",
    "https://www.trip.com/hotels/bangkok-hotel-detail-982054/the-st-regis-bangkok/",
    "https://www.trip.com/hotels/bangkok-hotel-detail-996638/lebua-at-state-tower/"
  ],
  "maxReviewsPerHotel": 200,
  "sortBy": "mostRecent",
  "minRating": 1,
  "maxRating": 5,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "reviewId": {
    "label": "Review ID",
    "format": "string"
  },
  "hotelName": {
    "label": "Hotel",
    "format": "string"
  },
  "submittedAt": {
    "label": "Submitted",
    "format": "string"
  },
  "reviewer": {
    "label": "Reviewer",
    "format": "object"
  },
  "travelType": {
    "label": "Travel type",
    "format": "string"
  },
  "roomName": {
    "label": "Room",
    "format": "string"
  },
  "overallRating": {
    "label": "Rating",
    "format": "number"
  },
  "subRatings": {
    "label": "Sub-ratings",
    "format": "array"
  },
  "reviewText": {
    "label": "Review",
    "format": "string"
  },
  "recommends": {
    "label": "Recommends",
    "format": "boolean"
  },
  "ownerResponse": {
    "label": "Hotel response",
    "format": "object"
  },
  "imagesCount": {
    "label": "# images",
    "format": "integer"
  }
}
```

## About this Actor

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