Find the agoda_hotel_id for a hotel
search_hotelsResolve a hotel to the agoda_hotel_id that track_hotel_price needs. This is a lookup step, not a hotel search engine: it returns catalog entries (name, address, stars, rating, review count) and no prices — for prices, track the hotel or use list_hotel_deals. Give a city, region or airport name (Korean, Japanese, Chinese or English) and, when the user named a hotel, the hotel filter; the city is resolved to the best catalog match. If several cities match, other_city_matches lists them — pass one of their city_id values (instead of city) to search that city. Typical flow: search_hotels → track_hotel_price → get_price_history.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| city | No | City, region or airport name, e.g. "Sapporo", "삿포로", "札幌". Required unless city_id is given. | |
| hotel | No | Optional hotel-name filter within the city, e.g. "Hilton", "힐튼". Omit to list notable hotels. | |
| limit | No | Max hotels to return (default 8). | |
| city_id | No | Catalog city id from a previous result (other_city_matches). Overrides city. |