Traveller's Choice Hotel API
  • ๐ŸšฉGetting Started with Hotel API
  • ๐Ÿ•ธ๏ธUnderstanding the API structure
  • ๐Ÿ”‘Authentication API
    • Access token
  • ๐Ÿ“šHotel Content API
    • Content API
      • Hotels Master
        • Hotels API
        • Hotel detail API
      • Location Master
        • countries
        • States
        • Cities
        • Areas
      • Types Master
        • Room Types Master
          • Room Types API
          • Room Types Detail API
        • Board Type Master
          • Board Types API
          • Board Types Detail API
        • Accommodation Type Master
          • Accommodation Types API
          • Accommodation Type Detail API
        • Chains Master
          • Chains API
          • Chain Detail API
        • Amenities Master
          • Amenities API
          • Amenity Detail API
        • Amenity Group Master
          • Amenity group API
          • Amenity Group Detail API
      • ๐Ÿ”„Sync Id
  • ๐ŸจHotel Booking API
    • Booking API
      • Availability APIs
        • MinRate Availability API
        • Availability API
      • Check Rate API
      • Booking APIs
        • Create a Booking - API
        • Booking Details API
        • Cancel Booking API
  • ๐Ÿ•ต๏ธTest cases
    • Booking API
  • Webhook
  • Errors
    • Token Error
Powered by GitBook
On this page
  • MinRate Availability API
  • Availability API
  1. Hotel Booking API
  2. Booking API

Availability APIs

There are two different APIs available for handling availability requests.

MinRate Availability API

This API is used to retrieve the minimum rate offered by a list of hotels for a specific query. The significance of this API lies in its ability to list a large number of hotels with the minimum available rate based on the customer request.

For example, if your customer is searching for hotels in a specific location, such as Dubai, you already have the data for available hotels in Dubai based on our ContentAPIs. Letโ€™s say you find 100 hotels in Dubai. You can pass the hotel IDs in an array format in the request body. The MinRate Availability API will respond with the minPrice, which represents the lowest available price for each specific hotel according to the customerโ€™s query.

Availability API

This API returns all possible booking options for the list of hotels provided in the request body. It delivers all the necessary data required for the subsequent steps in the booking process. Therefore, this step is mandatory before proceeding with the booking.

PreviousBooking APINextMinRate Availability API

Last updated 7 months ago

๐Ÿจ