Skip Navigation

Search by Property Features

Search by Property Features

Search for hotels that match specified PropertyFeatures-> OTA Codes. This can be a standalone search method or used in combination with either an Address or Destination search.

If multiple criteria are included in the request, the system will search for hotels that match any of the features (search is "OR" not "AND").

Note: Only applicable for the Hotel List operation


Parameter Description Type
amenityList HAC OTA code (HTA SynXis code) indicating the property feature. Array [Integer]


Sample Requests

  • Single Property Feature Code

/v1/api/hotel/list?chainId=12723&amenityList=101


  • Multiple Property Feature Codes Search for hotels that have either Wheel Chair Access (OTA Code=101) OR Pets Allowed (OTA Code=224).

/v1/api/hotel/list?chainId=12723&amenityList=101,224


Response (partial)

{
    "paging": {
        "Size": 2,
        "Start": 0,
        "Total": 2
    },
    "hotelList": [{
        "PropertyFeatures": [{
            "Code": "20709",
            "Description": "Hearing impaired services",
            "OtaCode": "248",
            "OtaType": "HTA",
            "OtaDescription": "Hearing impaired services"
        }, {
            "Code": "20600",
            "Description": "Wheel chair access",
            "OtaCode": "101",
            "OtaType": "HTA",
            "OtaDescription": "Wheel chair access"
        }, {
            "Code": "20512",
            "Description": "Brailed elevators",
            "OtaCode": "13",
            "OtaType": "HTA",
            "OtaDescription": "Brailed elevators"
        }],
        "Code": "CRSPROD2",
        "ID": "80710"
    }, {
        "PropertyFeatures": [{
            "Code": "20665",
            "Description": "Barber shop",
            "OtaCode": "166",
            "OtaType": "HTA",
            "OtaDescription": "Barber shop"
        }, {
            "Code": "20723",
            "Description": "Pets allowed",
            "OtaCode": "224",
            "OtaType": "HTA",
            "OtaDescription": "Pets allowed"
        }, {
            "Code": "20521",
            "Description": "Concierge desk",
            "OtaCode": "22",
            "OtaType": "HTA",
            "OtaDescription": "Concierge desk"
        }],
        "Code": "CRSPROD3",
        "ID": "65593"
    }]
}