Search for hotels and accommodations with ratings and prices
Search for hotel accommodations using the mock_api_fetch tool. Find options ranging from budget to luxury in any destination.
Call the mock API with hotel search parameters:
mock_api_fetch("hotels", {
"city": "Paris",
"checkin": "2024-03-15",
"checkout": "2024-03-18",
"guests": 2
})
The API returns hotel options with:
name: Hotel namerating: Star rating (1-5)review_score: Guest review score (out of 10)price_per_night: Nightly rate in USDtotal_price: Total for the staylocation: Neighborhood or areaamenities: List of included amenities (WiFi, breakfast, pool, etc.)distance_to_center: Distance to city centerPresent hotel results with:
Summary: Number of options, date range, and price range
Hotel Details: For each hotel:
Categories: Group by budget tier if helpful:
Example format: "Found 3 hotels in Paris for March 15-18 (3 nights):
★★★★☆ Hotel Le Marais - 8.7/10 📍 Le Marais, 0.5 km to center 💰 $180/night ($540 total) ✓ Free WiFi, Breakfast included
★★★☆☆ Ibis Bastille - 7.9/10 📍 Bastille, 1.2 km to center 💰 $95/night ($285 total) ✓ Free WiFi, 24h reception"