Hotels
Retrieve minimum rate for hotels
Returns the cheapest rate available for each hotel in the provided list. Ideal for listing pages where you only need to display the starting price for each hotel. All prices are in Rove Miles.
POST
Retrieve minimum rate for hotels
Authorizations
API key for authentication. Add your API key to the Authorization header with this format: 'Bearer your_api_key_here'
Body
application/json
Array of hotel IDs to get minimum rates for. These IDs come from the /hotels/list endpoint.
Required array length:
1 - 5000 elementsExample:
["hotel123", "hotel456", "hotel789"]Check-in date (YYYY-MM-DD)
Example:
"2023-12-15"
Check-out date (YYYY-MM-DD)
Example:
"2023-12-20"
Occupancy details for each room
Example:
[{ "adults": 2, "children": [5, 9] }]Guest nationality in ISO 2-letter country code format
Pattern:
^[A-Z]{2}$Example:
"US"
Retrieve minimum rate for hotels