Use Case Overview

Similar to the single property search, this multi-property search functionality enables users to retrieve availability for multiple hotels within the same chain or across different chains in a single request. By sending an array of chain codes and property codes, users can access a broader range of hotel options, simplifying and accelerating the booking process. Each hotel in the request returns a separate availability response, providing detailed information on room availability, rates, and other relevant data for each specified property. This feature is ideal for users who want to present a wider selection of accommodation options or need to compare availability across various properties simultaneously.

Parameters

  • Hotel Chain Code: A unique code representing a hotel brand or chain (e.g., “HY” for Hyatt).

  • Property Code: A unique code representing a specific hotel property within a chain.

Example

A user can search for hotels under Waldorf Astoria and The Peninsula in Beverly Hills by specifying the chain code and property code for each.


{
  "stay_info": {
    "check_in_date": "2024-01-01",
    "check_out_date": "2024-01-02",
    "guests": {
      "adults": 1
    }
  },
  "filter": {
    "hotel": [
    {
      "chain_code": "WA",
      "property_code": "C8639"
    },
    {
      "chain_code": "PN",
      "property_code": "57806"
    }
    ]
  }
}