# Scrape Ctrip (携程) Chinese Hotel Reviews

**Use case:** 

Scrape native Chinese-language hotel reviews from Ctrip (携程): reviewer IP location, sub-ratings, owner responses, travel type. $4/1K.

## Input

```json
{
  "startUrls": [
    "https://hotels.ctrip.com/hotels/1286148.html"
  ],
  "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.