Instant Booking
Our modular API will provide you with all the data points you and your travelers need to complete a property booking.
For more information on how the Rapid API works and what it offers for partners, see here.
1. Shop
The Shop API returns rates and availability on all room types for specified properties (maximum of 250 properties per request). The response includes rate details such as promos, whether the rate is refundable, cancellation penalties, and a full price breakdown to meet the price display requirements for your market. For more information on this service please see here.
Get availability
List<Property> propertyList = rapidClient.getAvailability(
"YYYY-MM-DD",
"YYYY-MM-DD",
"USD",
"LANGUAGE",
"US",
List.of("OCCUPANCY"),
List.of("PROPERTY ID"),
BigDecimal.ONE,
"SALES-CHANNEL",
"SALES-ENV",
"CUSTOMER-IP"
);
Check room prices
Property property = propertyList.get(0);
if (property instanceof PropertyAvailability) {
PropertyAvailability propertyAvailability = (PropertyAvailability) property;
RoomPriceCheck roomPriceCheck = rapidClient.priceCheck(
"PROPERTY ID",
propertyAvailability.getRooms().get(0).getId(),
propertyAvailability.getRooms().get(0).getRates().get(0).getId(),
getPriceCheckToken(propertyAvailability)
);
}
2. Book
The Booking API allows you to book rooms and rates confirmed by the Price Check response. For more information on the Rapid Booking API please see here.
Create itinerary
The primary itinerary method of the Booking API creates a reservation for the selected property, room, rate, and occupancy. Payment information, including billing/cardholder contact information, is provided directly within the request. See here for more details.
ItineraryCreation itineraryCreation = rapidClient.postItinerary(
"CUSTOMER IP",
getPostItineraryToken(roomPriceCheck),
createItineraryRequest(false)
);