# Scrape Budget Hotels in Bangkok - Trip.com

**Use case:** 

Pull budget Bangkok hotels under a price cap from Trip.com with Hotel, Stars, Score, From price and Address. Export to JSON, CSV or Excel.

## Input

```json
{
  "searchDestinations": [
    "Bangkok"
  ],
  "checkInDate": "2026-08-15",
  "checkOutDate": "2026-08-18",
  "adults": 2,
  "children": 0,
  "rooms": 1,
  "maxHotelsPerSearch": 30,
  "maxHotels": 50,
  "minRating": 0,
  "minReviews": 0,
  "maxPrice": 60,
  "includeHotelDetails": true,
  "includeReviews": true,
  "maxReviewsPerHotel": 10,
  "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.