Hotel Search
2 creditsSearch for hotels by location with filters for dates, amenities, price, and more.
/api/v1/tools/google/hotels/searchParameters
Location to search, e.g. "Paris, France", "Tokyo".
Check-in date in YYYY-MM-DD format.
Check-out date in YYYY-MM-DD format.
Number of adults (1-9). Defaults to 2.
Number of children (0-9). Defaults to 0.
Number of rooms (1-9). Defaults to 1.
"hotels", "vacation_rentals", or "both". Defaults to "both".
3-letter currency code. Defaults to "USD".
Minimum price filter.
Maximum price filter.
Star ratings to include (2-5).
Minimum guest rating: "3.5", "4.0", or "4.5".
Filter by amenities: "free_wifi", "pool", "parking", "spa", "fitness_center", "restaurant", "room_service", "bar", "air_conditioning", "ev_charger", "pet_friendly", "kitchen", "washer_dryer", "accessible", "beach_access", "free_breakfast", "hot_tub".
Filter by property type: "apartment_hotels", "spa_hotels", "resorts", "boutique_hotels", "hostels", "bed_and_breakfasts", "ryokans", "riads", "vacation_rentals", "motel".
Only show free cancellation. Defaults to false.
Only show special offers. Defaults to false.
Only show eco-certified. Defaults to false.
"relevance", "price_low", "price_high", "rating", "distance". Defaults to "relevance".
Max results. Defaults to 50.
Include full details per hotel. Defaults to false.
Fields to include per result. Use ["*"] for all.
Response Schema
Google Hotels search result
Array of hotel search results
Total number of results returned
Request metadata
Tool name (google-hotels-search)
Credits consumed (2)
Unique request ID
Request
curl -X POST https://scraper.run/api/v1/tools/google/hotels/search \-H "Authorization: Bearer sc_live_..." \-H "Content-Type: application/json" \-d '{"location": "Paris, France","checkInDate": "2026-07-01","checkOutDate": "2026-07-05"}'
Response Example
{"data": {"results": [{"name": "Hotel Le Marais","propertyId": "ChYIq_X...","rating": 4.5,"reviewCount": 1243,"hotelClass": 4,"price": 195,"currency": "USD","location": "4th Arrondissement, Paris","amenities": ["free_wifi","restaurant","bar"],"type": "hotel"},{"name": "Aparthotel Montmartre","propertyId": "ChYIr_Z...","rating": 4.2,"reviewCount": 876,"hotelClass": 3,"price": 142,"currency": "USD","location": "18th Arrondissement, Paris","amenities": ["free_wifi","kitchen","washer_dryer"],"type": "vacation_rental"}],"count": 2},"meta": {"tool": "google-hotels-search","creditsUsed": 2,"requestId": "req_abc123"}}