# Traveloka Hotel Scraper - SEA Hotel Prices & Ratings

**Use case:** 

Scrape Traveloka hotels (SEA). Get prices, ratings, coords & photos. Search by city/link. Monitor price changes with recurring updates.

## Input

```json
{
  "mode": "search",
  "market": "en-sg",
  "locations": [
    "Singapore"
  ],
  "adults": 2,
  "rooms": 1,
  "sortBy": "popularity",
  "minStarRating": 0,
  "urls": [
    "https://www.traveloka.com/en-sg/hotel/search?spec=01-10-2026.02-10-2026.1.1.HOTEL_GEO.107493.Singapore.2"
  ],
  "fetchDetails": true,
  "fetchReviews": false,
  "maxReviews": 10,
  "maxItems": 20,
  "maxPages": 0,
  "incrementalMode": false,
  "emitUnchanged": false,
  "emitExpired": false,
  "proxy": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxNotifyListings": 50
}
```

## Output

```json
{
  "hotelId": {
    "label": "Hotel id"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "url": {
    "label": "Url"
  },
  "locationName": {
    "label": "Location name"
  },
  "region": {
    "label": "Area",
    "format": "text"
  },
  "price": {
    "label": "Nightly price",
    "format": "number"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "starRating": {
    "label": "Stars",
    "format": "number"
  },
  "guestRating": {
    "label": "Guest score",
    "format": "number"
  },
  "guestRatingLabel": {
    "label": "Guest rating label"
  },
  "numReviews": {
    "label": "Num reviews"
  },
  "latitude": {
    "label": "Latitude"
  },
  "longitude": {
    "label": "Longitude"
  },
  "imageUrl": {
    "label": "Image url"
  },
  "market": {
    "label": "Market"
  },
  "checkInDate": {
    "label": "Check in date"
  },
  "checkOutDate": {
    "label": "Check out date"
  },
  "changeType": {
    "label": "Change type"
  },
  "changedFields": {
    "label": "Changed fields"
  },
  "firstSeenAt": {
    "label": "First seen at"
  },
  "lastSeenAt": {
    "label": "Last seen at"
  }
}
```

## About this Actor

This example demonstrates how to use [Traveloka Hotel Scraper - SEA Hotel Prices & Ratings](https://apify.com/abotapi/traveloka-com-scraper.md) with a specific input configuration. Visit the [Actor detail page](https://apify.com/abotapi/traveloka-com-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/abotapi/traveloka-com-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`).
