# Scrape Trip.com Hotel Details from a URL

**Use case:** 

Export full hotel details from a Trip.com URL with Hotel, Stars, Score, Reviews, Address and Amenities. No login required.

## Input

```json
{
  "searchDestinations": [
    "Singapore"
  ],
  "hotelUrls": [
    {
      "url": "https://www.trip.com/hotels/detail/?hotelId=1234567"
    }
  ],
  "adults": 2,
  "children": 0,
  "rooms": 1,
  "maxHotelsPerSearch": 30,
  "maxHotels": 100,
  "minRating": 0,
  "minReviews": 0,
  "maxPrice": 0,
  "includeHotelDetails": true,
  "includeReviews": true,
  "maxReviewsPerHotel": 20,
  "deduplicateHotels": true,
  "monitorMode": false,
  "monitorStoreName": "tripcom-monitor",
  "maxConcurrency": 6,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyCountry": "US"
  }
}
```

## Output

```json
{
  "name": {
    "label": "Hotel",
    "format": "text"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "reviewScore": {
    "label": "Score",
    "format": "number"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "lowestPrice": {
    "label": "From",
    "format": "number"
  },
  "priceCurrency": {
    "label": "Cur",
    "format": "text"
  },
  "city": {
    "label": "City",
    "format": "text"
  },
  "zone": {
    "label": "Area",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "amenitiesCount": {
    "label": "Amenities",
    "format": "number"
  },
  "qualityScore": {
    "label": "Quality",
    "format": "number"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

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