# Trip.com Hotel Listings and Pricing Data Extraction

**Use case:** 

Extract real-time hotel names, prices, reviews, and availability from Trip.com. Get structured data for travel research and price monitoring.

## Input

```json
{
  "startUrl": "https://us.trip.com/hotels/list?city=228&provinceId=0&countryId=78&checkIn=2026-05-18&checkOut=2026-05-30&lat=0&lon=0&districtId=0&barCurr=PKR&searchType=CT&searchValue=undefined&crn=1&adult=2&children=0&searchBoxArg=t&ctm_ref=ix_sb_dl&travelPurpose=0&domestic=false",
  "results_wanted": 100,
  "max_pages": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

## Output

```json
{
  "hotelId": {
    "label": "Hotel ID",
    "format": "text"
  },
  "hotelName": {
    "label": "Hotel",
    "format": "text"
  },
  "cityName": {
    "label": "City",
    "format": "text"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "reviewScore": {
    "label": "Score",
    "format": "number"
  },
  "displayPrice": {
    "label": "Price",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "roomName": {
    "label": "Room",
    "format": "text"
  },
  "positionDescription": {
    "label": "Area",
    "format": "text"
  },
  "hotelDetailUrl": {
    "label": "Detail page",
    "format": "link"
  },
  "imageUrl": {
    "label": "Image",
    "format": "image"
  }
}
```

## About this Actor

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