MinRate Availability API
This API returns the minimum rate for each hotel based on a specific query. You can use this endpoint to retrieve the minimum rates for the list of hotels provided in the request body.
API details
POST
/api/v1/hotel/booking-api/availability/rooms/min-rate
Headers
Content-Type
application/json
Authorization
Bearer <token>
Accept-Encoding
gzip
Body
hotelIds
Array
Hotel ids in array fomat
fromDate
String
checkin date
toDate
String
checkout date
noOfAdults
Integer
No of adults in a room
noOfChildren
Integer
No of children in a room
childrenAges
Array
Age of each children in a room
nationality
String
nationality of the guest
Response details
Response General data
tokenNumber
String
Unique code for an availability request.
fromDate
String
Checkin Date
toDate
String
Check out Date
nationality
String
Guest Nationality ISO code
roomPaxes
Array
roomPaxes.noOfAdults roomPaxes.noOfChildren roomPaxes.childrenAges[]
noOfNights
Integer
Total stay nights
Response Hotel data
hotelId
Integer
Unique Id for the hotel
hotelName
String
Name of the hotel
minPrice
Number
The minimum rate for the hotel based on your query.
Last updated