# Marina Bay Sands reviews from Trip.com

**Use case:** 

The guest reviews Trip.com shows first (about 10, in its "Most relevant" order) on the page of Marina Bay Sands, Singapore: review text, score out of 10, category scores, posting date, stay month, trip type, room, reviewer country, English translation and the hotel's reply when it posted one. One row per review. Export as JSON, CSV or Excel.

## Input

```json
{
  "hotelUrls": [
    "https://www.trip.com/hotels/singapore-hotel-detail-687592/marina-bay-sands/"
  ]
}
```

## Output

```json
{
  "hotelName": {
    "label": "Hotel Name",
    "format": "string"
  },
  "publishedDate": {
    "label": "Published Date",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer Name",
    "format": "string"
  },
  "tripType": {
    "label": "Trip Type",
    "format": "string"
  },
  "roomName": {
    "label": "Room Name",
    "format": "string"
  },
  "text": {
    "label": "Text",
    "format": "string"
  },
  "translatedText": {
    "label": "Translated Text",
    "format": "string"
  },
  "hotelResponse": {
    "label": "Hotel Response",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "note": {
    "label": "Note",
    "format": "string"
  },
  "source": {
    "label": "Source",
    "format": "string"
  },
  "hotelId": {
    "label": "Hotel Id",
    "format": "string"
  },
  "hotelUrl": {
    "label": "Hotel Url",
    "format": "string"
  },
  "requestedAs": {
    "label": "Requested As",
    "format": "string"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "string"
  },
  "reviewId": {
    "label": "Review Id",
    "format": "string"
  },
  "hotelCity": {
    "label": "Hotel City",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published At",
    "format": "string"
  },
  "stayMonth": {
    "label": "Stay Month",
    "format": "string"
  },
  "ratingScale": {
    "label": "Rating Scale",
    "format": "string"
  },
  "ratingLocation": {
    "label": "Rating Location",
    "format": "string"
  },
  "ratingAmenities": {
    "label": "Rating Amenities",
    "format": "string"
  },
  "ratingService": {
    "label": "Rating Service",
    "format": "string"
  },
  "ratingCleanliness": {
    "label": "Rating Cleanliness",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "translatedLanguage": {
    "label": "Translated Language",
    "format": "string"
  },
  "reviewerCountry": {
    "label": "Reviewer Country",
    "format": "string"
  },
  "photoCount": {
    "label": "Photo Count",
    "format": "string"
  },
  "helpfulCount": {
    "label": "Helpful Count",
    "format": "string"
  },
  "hotelResponseDate": {
    "label": "Hotel Response Date",
    "format": "string"
  },
  "reviewPlatform": {
    "label": "Review Platform",
    "format": "string"
  },
  "sourceName": {
    "label": "Source Name",
    "format": "string"
  },
  "positionOnPage": {
    "label": "Position On Page",
    "format": "string"
  },
  "hotelReviewCount": {
    "label": "Hotel Review Count",
    "format": "string"
  },
  "hotelRating": {
    "label": "Hotel Rating",
    "format": "string"
  },
  "firstCheck": {
    "label": "First Check",
    "format": "string"
  }
}
```

## About this Actor

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


## How to integrate an Actor?

This Task's input is already configured above. Use it as-is rather than inventing a new one.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For full API examples (JavaScript, Python, CLI, MCP, OpenAPI), see this Task's Actor page: https://apify.com/neverempty/trip-com-reviews-scraper.md

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).
