Skip Navigation

Get Hotel List

Hotel
Search
REST API
Travel Agency
  • Filter search properties based on the level of service.
  • Allow users to control whether property quality codes are returned in the API response.

API Information

Format
JSON
Endpoint
/v4.0.0/get/hotellist
Current Version
4
Environment
Production

What's New

  • Filter search properties based on the level of service.
  • Allow users to control whether property quality codes are returned in the API response.

New Features

In the Request

Optional

Parameter: Filter search properties based on the level of service

Type: list

Description: The property quality code filter allows users to filter properties based on the level of service. This field is based on the LOS OTA code.

Sample Value:

{
   "PropertyQualityCodes": {
      "Inclusive": "true",
      "PropertyQualityCode": [
         "5",
         "6"
      ]
   }
}

In the Request

Optional

Parameter: PropertyQualityInfo

Type: boolean

Description: Allows users to control whether property quality codes are returned in the API response

Sample Value:

{
   "PropertyQualityInfo": "true"
}

Functional Updates And Enhancements

In the Response

Optional

Parameter: Hotel Codes and Sabre Hotel Codes

Type: string

Description: The response will now always return a Global hotel code in the 'HotelCode' attribute in the response, irrespective of the CodeContext specified in the request.

Sample Value:

Request:
{
   "HotelRefs": {
      "HotelRef": {
         "HotelCode": "1234",
         "CodeContext": "SABRE"
      }
   }
}

Response
{
   "HotelInfo": {
      "HotelCode": "100095296",
      "CodeContext": "GLOBAL",
      "SabreHotelCode": "1234"
   }
}

In the Request

Optional

Parameter: SabreRating

Type: number

Description: The SabreRating filter now allows users to filter properties with a lowest rating of 0.5 instead of 1

Sample Value:

{
   "SabreRating": {
      "Min": "0.5",
      "Max": "0.5"
   }
}

  • Content Services for Lodging APIs now provide the ability to search for and identify properties that have implemented enhanced safety protocols to provide a safe stay for the guests
  • A new amenity OTA code (2002) can be used to request and identify properties that support the Stay Safe initiative
  • Ability to filter hotels in the search request by making use of the AmenityCode filter that is already available, so no schema changes
  • For more information - https://developer.sabre.com/docs/safe_stay_indicator

API Information

Format
JSON
Current Version
3.0.0
Environment
Production

What's New

  • Content Services for Lodging APIs now provide the ability to search for and identify properties that have implemented enhanced safety protocols to provide a safe stay for the guests
  • A new amenity OTA code (2002) can be used to request and identify properties that support the Stay Safe initiative
  • Ability to filter hotels in the search request by making use of the AmenityCode filter that is already available, so no schema changes
  • For more information - https://developer.sabre.com/docs/safe_stay_indicator

Business Value

  • In the wake of the COVID-19 crisis, hotels around the globe are increasingly looking at improving cleanliness programs at their properties. Hotels want to provide guests with peace of mind and assure them that their room has been thoroughly sanitized. Whether it's guest rooms, restaurants, gyms, or other public areas, hotels want to make sure the health and safety of guests is a priority, now more than ever.
  • While our hotel partners have always taken providing clean rooms seriously, some are taking actions that go above and beyond standards provided by various governing bodies to meet the expectations presented by COVID-19. Several hoteliers are already implementing enhanced hotel cleaning practices, social interactions, and workplace protocols to meet new health and safety regulations.
  • This is of particular importance as Sabre connected travel agencies, Online Travel Agencies (OTAs), and corporations have a duty of care about the well-being of the traveler whilst they are on their trip.

New Features

In the Request

Optional

Parameter: AmenityCode

Type: String

Description: To request for only those properties that are a part of the “Stay Safe” initiative, AmenityCode 2002 must be added as a filter in the request.

Sample Value:

{
  "GetHotelListRQ": {
    "version": "3.0.0",
    "POS": {
      "Source": {
        "PseudoCityCode": "TM61"
      }
    },
    "HotelPref": {
        "AmenityCodes": {
          "Inclusive": true,
          "AmenityCode": [
            2002
          ]
        }
    },
    "HotelInfoRef": {
      "LocationInfo": true,
      "Amenities": true,
      "PropertyTypeInfo": true,
      "SecurityFeatures": true
    }
  }
}

In the Response

Optional

Parameter: Amenities

Type: String

Description: The Stay Safe indicator is returned as Amenities as Code 2002 in the API response for the properties that support Stay Safe guidelines.

Sample Value:

"Amenities": {
                            "Amenity": [
                                {
                                    "Code": 2002,
                                    "Description": "Stay Safe",
                                    "value": ""
                                },
                                {
                                    "Code": 262,
                                    "Description": "Kitchenette",
                                    "value": ""
                                },
                                {
                                    "Code": 42,
                                    "Description": "Free parking",
                                    "value": ""
                                },
                                {
                                    "Code": 44,
                                    "Description": "Game room",
                                    "value": ""
                                },
                                {
                                    "Code": 55,
                                    "Description": "Hot Tub",
                                    "value": ""
                                }
                            ]
                        }

  • View Security Features for Lodging properties in the API response
  • View Amenity Text for each property amenity in the API response

API Information

Format
JSON
Endpoint
/V3.0.0/GetHotelListRQ
Current Version
3.0.0
Environment
Production

What's New

  • View Security Features for Lodging properties in the API response
  • View Amenity Text for each property amenity in the API response