# Trip.com & Ctrip Hotel Review Data Export

**Use case:** 

Bulk-export Trip.com and Ctrip hotel review data as structured JSON, CSV, Excel or XML. 20+ fields per review, up to 500 hotels per run. $4/1K.

## Input

```json
{
  "startUrls": [
    "https://www.trip.com/hotels/macau-hotel-detail-344977/the-venetian-macao-resort-hotel/",
    "https://hotels.ctrip.com/hotels/1286148.html"
  ],
  "maxReviewsPerHotel": 500,
  "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.