Skip to content

Accommodation

A Quick Start

There are basically five steps to booking a hotel, but before you start you must get a API Token to use.

export XENI_TOKEN=$(curl -X 'POST' $XENI_API_HOST/api/accounts/get_token \
        -H 'accept: application/json' \
        -H 'content-type: application/json' \
        -d '{"user":{"email": "'"$XENI_USER_EMAIL"'", "password": "'"$XENI_USER_PASSWORD"'"}}' \
        | sed "s/{.*\"token\":\"\([^\"]*\).*}/\1/g")

For testing your code it's a good idea to use our simulated repsonses, to do so use the following header:

-H "x-simulate-return: success"

Searching for a Location

To do an availability search for hotels you will need a location as a start point of where the traveler is looking for accomodations. Use the following API to offer the client a drop down/autocomplete of locations from which you get and can search by the location's id. It needs three or more characters to return a result.

Example searching for locations
# an alternative to  "python -m json.tool" is  "json_pp -json_opt pretty,canonical"

curl -X 'GET' \
  "$XENI_API_HOST/api/locations/search?starts_with=New%20York" \
  -H "accept: application/json" \
  -H "authorization: bearer: $XENI_TOKEN" \                     
  | python -m json.tool

  {
    "data": [
         {
            "id": "bbc35c49-d2a7-431a-ac40-a4944c3a00e7",
            "name": "New York, New York, United States of America",
            "type": "city"
        },
        {
            "id": "fda1a5e6-bf14-4caa-99b4-6d896650a047",
            "name": "New York, NY (JRA-West 30th Street Heliport), New York, New York, United States of America",
            "type": "airport"
        },
        {
            "id": "6b24a5dc-9fde-4770-ac55-ecc86882478a",
            "name": "New York, NY (JRE-East 60th Street Heliport), New York, New York, United States of America",
            "type": "airport"
        },
        {
            "id": "e35fc3ba-c39a-413d-8a92-ff53e3d9ab63",
            "name": "New York, NY (TSS-East 34th Street Heliport), New York, New York, United States of America",
            "type": "airport"
        }
     ]
  }
The records returned are not the full Location record but are kept small for performance sake. You can use the "type" field to set the icon in the dropdown menu as shown in the image below.

Showning an Expedia dropdown menu item

Showning an Expedia dropdown menu item

Searching for Availability

Once you have a location to search against, for availability you need to provide at a minimum the following pieces of information:

  • location id - "bbc35c49-d2a7-431a-ac40-a4944c3a00e7"
  • check in date - "2023-10-31"
  • check out date - "2023-11-10"
  • An array of occupancies -
    [
        { // room one
            "adults": 2, // number of adults
            "children_ages": [10,2] // the age of each child
        }, 
        { // room 2
            "adults": 2
        }
    ]
    

For more options see the API docs

Example of searching for accomodation availability
curl -X 'POST' \
  "$XENI_API_HOST/api/accommodation_searches/search" \
  -H "accept: application/json" \
  -H "Content-Type: application/json" \
  -H "authorization: bearer: $XENI_TOKEN" \
  -d '{
  "customer_ip": "127.0.0.1",
  "check_in": "2023-08-27",
  "check_out": "2023-08-30",
  "destination_id": "2742111a-3a8f-467b-aede-c454d796b86f",
  "occupancies": [
    {
      "adults": 2,
      "children_ages": [
        10,
        2
      ]
    },
    {
      "adults": 2
    }
  ]
}'
Example of accomodation availability search result
{
    "data": {
        "availability": [
              {
                "bye_line": "Near Times Square",
                "category": "Hotel",
                "chain": "Hilton Worldwide",
                "description": "With a stay at Hilton New York Times Square, you'll be centrally located in New York, steps from Madame Tussauds Wax Museum and Broadway.  This 4-star hotel is 0.1 mi (0.2 km) from Times Square and 0.6 mi (1 km) from Rockefeller Center.",
                "guest_ratings": {
                    "amenities": 4.1,
                    "cleanliness": 4.4,
                    "comfort": 4.3,
                    "condition": 4.3,
                    "count": 779,
                    "overall": 4.2,
                    "service": 4.2
                },
                "hero_images": {
                    "hi": "https://i.travelapi.com/lodging/1000000/430000/423400/423330/134d2636_z.jpg",
                    "lo": "https://i.travelapi.com/lodging/1000000/430000/423400/423330/134d2636_t.jpg",
                    "med": "https://i.travelapi.com/lodging/1000000/430000/423400/423330/134d2636_b.jpg"
                },
                "images": [
                    {
                        "caption": "Primary image",
                        "images": {
                            "hi": "https://i.travelapi.com/lodging/1000000/430000/423400/423330/134d2636_z.jpg",
                            "lo": "https://i.travelapi.com/lodging/1000000/430000/423400/423330/134d2636_t.jpg",
                            "med": "https://i.travelapi.com/lodging/1000000/430000/423400/423330/134d2636_b.jpg"
                        }
                    },
                    {
                        "caption": "Lobby",
                        "images": {
                            "hi": "https://i.travelapi.com/lodging/1000000/430000/423400/423330/6c479d39_z.jpg",
                            "lo": "https://i.travelapi.com/lodging/1000000/430000/423400/423330/6c479d39_t.jpg",
                            "med": "https://i.travelapi.com/lodging/1000000/430000/423400/423330/6c479d39_b.jpg"
                        }
                    }
                ],
                "location": {
                    "lat": 40.756413,
                    "lon": -73.98796
                },
                "name": "Hilton New York Times Square",
                "popular_amenities": [
                    "Restaurant",
                    "Gym",
                    "Parking",
                    "WiFi included"
                ],
                "property_id": "423330",
                "public_price": 1764.09,
                "review_count": 779.0,
                "session_id": null,
                "star_rating": 4.0,
                "total_price": 1764.09,
                "vendor_id": "exepdia",
                "vendors_property_id": "423330"
            }
     ],
        "search_id": "2a9ee8d4-082c-4931-ace4-5af31b34425e"
    }
}

The API returns a summary list of accomodations with enough information to build a search results page. For the Epedia raw data see: Expedia API Docs

Showning an Expedia dropdown menu item

Example of a search results page

This will return a saved search result for availabilty of hotels in New York.

Fetching the Details of a Hotel

To search for an individual hotel availability you need at a minimum the following pieces of information:

  • search_id - "962c9315-0e35-45e3-b158-be10c860912d"
  • property_id - "40553"
  • optionally a raw flag - true

For more options see the API docs

Example of fetching accomodation availability and details
curl -X 'GET' \
  -H "accept: application/json" \
  -H "Content-Type: application/json" \
  -H "authorization: bearer: $XENI_TOKEN" \
  -H "x-simulate-return: success" \
  "$XENI_API_HOST/api/accommodation_searches/accommodation?search_id=962c9315-0e35-45e3-b158-be10c860912d&property_id=40553"
the overiew section of the detailed accommodation record
{
  "accommodation": {

    "overview": {
      "bye_line": "Near Central Park",
      "category": "Hotel",
      "chain": "Rosewood Hotels",
      "description": "Take time to pamper yourself with a visit to the full-service spa. Additional features at this Art Deco hotel include complimentary wireless Internet access, concierge services, and gift shops/newsstands.<br />Distances are displayed to the nearest 0.1 mile and kilometer. <br /> <p>Central Park - 0.4 km / 0.2 mi <br /> Metropolitan Museum of Art - 0.5 km / 0.3 mi <br /> Central Park Zoo - 1.1 km / 0.7 mi <br /> Solomon R. Guggenheim Museum - 1.1 km / 0.7 mi <br /> American Museum of Natural History - 1.4 km / 0.9 mi <br /> 5th Avenue - 1.6 km / 1 mi <br /> Memorial Sloan-Kettering Cancer Center - 1.6 km / 1 mi <br /> Mount Sinai Hospital - 1.8 km / 1.1 mi <br /> Trump Tower - 1.8 km / 1.1 mi <br /> Columbus Circle - 2.1 km / 1.3 mi <br /> Carnegie Hall - 2.1 km / 1.3 mi <br /> Lincoln Center - 2.2 km / 1.3 mi <br /> Beacon Theater - 2.2 km / 1.3 mi <br /> Museum of Modern Art - 2.2 km / 1.4 mi <br /> St. Patrick's Cathedral - 2.2 km / 1.4 mi <br /> </p><p>The nearest airports are:<br />LaGuardia Airport (LGA) - 15.2 km / 9.5 mi<br /> John F. Kennedy Intl. Airport (JFK) - 32.2 km / 20 mi<br /> Newark Liberty Intl. Airport (EWR) - 30.4 km / 18.9 mi<br /> New York, NY (NYS-Skyports Seaplane Base) - 6 km / 3.8 mi<br /> Teterboro, NJ (TEB) - 23.4 km / 14.5 mi<br /> </p><p>The preferred airport for The Carlyle, A Rosewood Hotel is LaGuardia Airport (LGA). </p><br />Featured amenities include a business center, limo/town car service, and express check-in.<br />Satisfy your appetite at the hotel's coffee shop/cafe. Wrap up your day with a drink at the bar/lounge. Continental breakfasts are available for a fee.<br />Near Central Park<br />With a stay at The Carlyle, A Rosewood Hotel, you'll be centrally located in New York, just a 5-minute walk from Central Park and 7 minutes by foot from Metropolitan Museum of Art.  This 5-star hotel is 1.8 mi (2.8 km) from Broadway and 1.9 mi (3.1 km) from Times Square.<br />Make yourself at home in one of the 188 guestrooms featuring minibars and espresso makers. Flat-screen televisions with cable programming provide entertainment, while complimentary wireless Internet access keeps you connected. Private bathrooms have complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.",
      "guest_ratings": {
        "amenities": 4.7,
        "cleanliness": 4.7,
        "comfort": 4.5,
        "condition": 4.4,
        "count": 590,
        "overall": 4.6,
        "service": 4.7
      },
      "images": [
        {
          "caption": "Primary image",
          "default": true,
          "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/w1989h1295x11y17-bde6524a_z.jpg",
          "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/w1989h1295x11y17-bde6524a_b.jpg"
        },
        {
          "caption": "Lobby",
          "default": false,
          "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/8dbe4499_z.jpg",
          "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/8dbe4499_b.jpg"
        },
        {
          "caption": "Lobby",
          "default": false,
          "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/cd90bea5_z.jpg",
          "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/cd90bea5_b.jpg"
        }
      ],
      "location": {
        "coordinates": [
          -73.96337,
          40.774612
        ],
        "crs": {
          "properties": {
            "name": "EPSG:4326"
          },
          "type": "name"
        },
        "type": "Point"
      },
      "name": "The Carlyle, A Rosewood Hotel",
      "popular_amenities": {
        "Electric car charging station": [
          "Electric car charging station"
        ],
        "Gym": [
          "Fitness facilities"
        ],
        "WiFi included": [
          "Free WiFi"
        ]
      },
      "property_id": "40553",
      "public_price": 9155.19,
      "review_count": 0,
      "search_id": "a3fa7d9b-ed80-451a-95a9-39b69914fcd0",
      "star_rating": 5,
      "total_price": 9155.19
    },
    "property_id": "40553",
    "vendor_id": "exepdia",
    "vendors_property_id": "40553"
  }
}

The result contains an overview object to render:

Showning an Expedia dropdown menu item

Example of a search results page

Use the array of room records to build the room choice tab

Showning an Expedia dropdown menu item

Example of a search results page
An example of availability rooms
{
  "accommodation": {
    "available_rooms": [
      {
        "amenities": {
          "26": {
            "id": "26",
            "name": "Television"
          },
          "121": {
            "categories": [
              "accessible_wheelchair"
            ],
            "id": "121",
            "name": "Wheelchair accessible"
          },
          "2030": {
            "categories": [
              "air_conditioning"
            ],
            "id": "2030",
            "name": "In-room climate control (air conditioning)"
          }
        },
        "beds": [
          "2 King Beds"
        ],
        "booking_info": {
          "bed_id": "37481",
          "price_check_uri": "/v3/properties/40553/rooms/211509376/rates/386134995?token=F~Oj46Zzw3JDE9ZnFgHjNVCxUwZlAybDEDbFQJCwYZUghLAlZxPwtUUQdJCFUZVgF8OjBmIDY0UjsVW1ZXUAMHCgUbAQcAVx0BBFpQSFUGVAYVVwJWVlwGVlpSUwUFWmAOAVQAAw4TN1YIBFUbNQi4YDhWp2Q0BA5RC1KpNz9UEy9QWFcTclBXF5U5STlPQ0RKSQQbC0BzCFYGdwRWFkpBQVxPV0dcFyldWwYTShZCQVMPRFgWGxRYUUxp0GQzBwfzMj9TD1cHCRZSDNkyNY40PckxY706MKNhNawyZZI2ZJlnRgBUA1YDAgBaTgIBVgdODAABVRoKDVNXS1ddV1VeAVBSVgFTBodhKVQBVAcUVAVMA1JsVA4MDAYIUVpMBQFWBVMBUg0Fatg3Y04KgZ-TCw=="
        },
        "cancel_policy": {
          "cancelation": "free",
          "expires": "2023-10-29T15:00:00.000-04:00"
        },
        "daily_rate": 2654.6666666666665,
        "description": "2 King Beds 1000 sq feet Layout - 2 bedrooms Relax - In-room massage available Internet - Free WiFi Entertainment - Flat-screen TV with premium channels and pay movies Food & Drink - Espresso maker, minibar (fees may apply), and free bottled water Sleep - Premium bedding, blackout drapes/curtains, turndown service, and bed sheets Bathroom - Private bathroom, bathrobes, slippers, and free toiletries Practical - Safe, free newspaper, and iron/ironing board; rollaway/extra beds available on request Comfort - Climate-controlled air conditioning and daily housekeeping Accessibility - Accessible bathtub Non-Smoking Connecting/adjoining rooms can be requested, subject to availability",
        "images": [
          {
            "caption": "Living room",
            "default": true,
            "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/047af0dc_z.jpg",
            "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/047af0dc_b.jpg"
          },
          {
            "caption": "Room",
            "default": false,
            "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/c5574c35_z.jpg",
            "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/c5574c35_b.jpg"
          },
          {
            "caption": "Room",
            "default": false,
            "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/9e912b8d_z.jpg",
            "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/9e912b8d_b.jpg"
          }
        ],
        "name": "Superior Suite, 2 Bedrooms, Accessible",
        "room_id": "211509376",
        "search_id": "a3fa7d9b-ed80-451a-95a9-39b69914fcd0",
        "size": {
          "square_feet": 1000,
          "square_meters": 93
        },
        "sleeps": 5,
        "taxes_fees": 0,
        "total_inclusive": 7964
      }
    ],
}

Booking a Room

In the room record is the room_booking_info field that you will use in the booking API. The nature of this field can change, vendor by vendor, so deal with it in an abstract way.

Example of of making a booking
curl -X 'POST' \
  "$XENI_API_HOST/api/accommodation/book" \
  -H "accept: application/json" \
  -H "Content-Type: application/json" \
  -H "authorization: bearer: $XENI_TOKEN" \
  -d '{
                "bed_id": "37481",
                "price_check_uri": "/v3/properties/40553/rooms/211509376/rates/386134995?token=F~Oj46Zzw3JDE9ZnFgHjNVCxUwZlAybDEDbFQJCwYZUghLAlZxPwtUUQdJCFUZVgF8OjBmIDY0UjsVW1ZXUAMHCgUbAQcAVx0BBFpQSFUGVAYVVwJWVlwGVlpSUwUFWmAOAVQAAw4TN1YIBFUbNQi4YDhWp2Q0BA5RC1KpNz9UEy9QWFcTclBXF5U5STlPQ0RKSQQbC0BzCFYGdwRWFkpBQVxPV0dcFyldWwYTShZCQVMPRFgWGxRYUUxp0GQzBwfzMj9TD1cHCRZSDNkyNY40PckxY706MKNhNawyZZI2ZJlnRgBUA1YDAgBaTgIBVgdODAABVRoKDVNXS1ddV1VeAVBSVgFTBodhKVQBVAcUVAVMA1JsVA4MDAYIUVpMBQFWBVMBUg0Fatg3Y04KgZ-TCw=="
        }'

Data Examples

An example of availability and details for an accomodation
{
    "search_id": "a3fa7d9b-ed80-451a-95a9-39b69914fcd0",
    "property_id": "40553",
    "available_rooms": [
        {
            "name": "Superior Suite, 2 Bedrooms, Accessible",
            "size": {
                "square_feet": 1000,
                "square_meters": 93.0
            },
            "description": "2 King Beds 1000 sq feet Layout - 2 bedrooms Relax - In-room massage available Internet - Free WiFi Entertainment - Flat-screen TV with premium channels and pay movies Food & Drink - Espresso maker, minibar (fees may apply), and free bottled water Sleep - Premium bedding, blackout drapes/curtains, turndown service, and bed sheets Bathroom - Private bathroom, bathrobes, slippers, and free toiletries Practical - Safe, free newspaper, and iron/ironing board; rollaway/extra beds available on request Comfort - Climate-controlled air conditioning and daily housekeeping Accessibility - Accessible bathtub Non-Smoking Connecting/adjoining rooms can be requested, subject to availability",
            "room_id": "211509376",
               "amenities": {
                "General": [
                    {
                        "id": "2081",
                        "name": "Premium TV channels"
                    },
                    {
                        "id": "143",
                        "name": "Free toiletries"
                    },
                    {
                        "id": "1073742816",
                        "name": "Rollaway/extra beds (surcharge)"
                    },
                    {
                        "id": "146",
                        "name": "In-room safe"
                    },
                    {
                        "id": "136",
                        "name": "Phone"
                    },
                    {
                        "id": "2056",
                        "name": "Turndown service"
                    },
                    {
                        "id": "144",
                        "name": "Hair dryer"
                    },
                    {
                        "id": "142",
                        "name": "Bathrobes"
                    },
                    {
                        "id": "2086",
                        "name": "DVD player"
                    },
                    {
                        "id": "2039",
                        "name": "Pay movies"
                    },
                    {
                        "id": "2026",
                        "name": "Desk"
                    },
                    {
                        "id": "1073743371",
                        "name": "Bedsheets provided"
                    },
                    {
                        "id": "2402",
                        "name": "HDTV"
                    },
                    {
                        "id": "131",
                        "name": "Minibar"
                    },
                    {
                        "id": "1073744202",
                        "name": "Shampoo"
                    },
                    {
                        "id": "26",
                        "name": "Television"
                    },
                    {
                        "id": "145",
                        "name": "Iron/ironing board"
                    },
                    {
                        "id": "2150",
                        "name": "Blackout drapes/curtains"
                    },
                    {
                        "id": "1073744203",
                        "name": "Toilet paper"
                    },
                    {
                        "id": "2151",
                        "name": "In-room childcare (surcharge)"
                    },
                    {
                        "id": "1073744447",
                        "name": "Wet bar"
                    },
                    {
                        "id": "1073744685",
                        "name": "Accessible bathtub"
                    },
                    {
                        "id": "2057",
                        "name": "Free bottled water"
                    },
                    {
                        "id": "1073743370",
                        "name": "Towels provided"
                    },
                    {
                        "id": "141",
                        "name": "Private bathroom"
                    },
                    {
                        "id": "2580",
                        "name": "TV size measurement: inch",
                        "value": "inch"
                    },
                    {
                        "id": "4420",
                        "name": "Connecting/adjoining rooms available"
                    },
                    {
                        "id": "2398",
                        "name": "Cable TV service"
                    },
                    {
                        "id": "2399",
                        "name": "Flat-panel TV"
                    },
                    {
                        "id": "1073744282",
                        "name": "Child-size bathrobes"
                    },
                    {
                        "id": "399",
                        "name": "Espresso maker"
                    },
                    {
                        "id": "135",
                        "name": "Hypo-allergenic bedding available"
                    },
                    {
                        "id": "2162",
                        "name": "Slippers"
                    },
                    {
                        "id": "2034",
                        "name": "Premium bedding"
                    },
                    {
                        "id": "128",
                        "name": "Free newspaper"
                    },
                    {
                        "id": "6176",
                        "name": "Non-Smoking"
                    },
                    {
                        "id": "133",
                        "name": "Daily housekeeping"
                    },
                    {
                        "id": "2160",
                        "name": "In-room massage available"
                    },
                    {
                        "id": "1073744201",
                        "name": "Soap"
                    }
                ],
                "accessible_wheelchair": [
                    {
                        "id": "121",
                        "name": "Wheelchair accessible"
                    }
                ],
                "air_conditioning": [
                    {
                        "id": "2030",
                        "name": "In-room climate control (air conditioning)"
                    }
                ],
                "free_wifi": [
                    {
                        "id": "2403",
                        "name": "Free WiFi"
                    }
                ],
                "wifi": [
                    {
                        "id": "2403",
                        "name": "Free WiFi"
                    }
                ]
            },
            "booking_info": {
                "bed_id": "37481",
                "price_check_uri": "/v3/properties/40553/rooms/211509376/rates/386134995?token=F~Oj46Zzw3JDE9ZnFgHjNVCxUwZlAybDEDbFQJCwYZUghLAlZxPwtUUQdJCFUZVgF8OjBmIDY0UjsVW1ZXUAMHCgUbAQcAVx0BBFpQSFUGVAYVVwJWVlwGVlpSUwUFWmAOAVQAAw4TN1YIBFUbNQi4YDhWp2Q0BA5RC1KpNz9UEy9QWFcTclBXF5U5STlPQ0RKSQQbC0BzCFYGdwRWFkpBQVxPV0dcFyldWwYTShZCQVMPRFgWGxRYUUxp0GQzBwfzMj9TD1cHCRZSDNkyNY40PckxY706MKNhNawyZZI2ZJlnRgBUA1YDAgBaTgIBVgdODAABVRoKDVNXS1ddV1VeAVBSVgFTBodhKVQBVAcUVAVMA1JsVA4MDAYIUVpMBQFWBVMBUg0Fatg3Y04KgZ-TCw=="
            },
            "cancel_policy": {
                "cancelation": "free",
                "expires": "2023-10-29T15:00:00.000-04:00"
            },
            "daily_rate": 2654.6666666666665,
            "taxes_fees": 0.0,
            "total_inclusive": 7964.0,
            "beds": [
                "2 King Beds"
            ],
            "images": [
                {
                    "default": true,
                    "caption": "Living room",
                    "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/047af0dc_z.jpg",
                    "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/047af0dc_b.jpg"
                },
                {
                    "default": false,
                    "caption": "Room",
                    "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/c5574c35_z.jpg",
                    "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/c5574c35_b.jpg"
                },
                {
                    "default": false,
                    "caption": "Room",
                    "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/9e912b8d_z.jpg",
                    "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/9e912b8d_b.jpg"
                }
            ],
            "sleeps": 5
        }
    ],
    "vendor_id": "exepdia",
    "vendors_property_id": "40553",
    "overview": {
        "name": "The Carlyle, A Rosewood Hotel",
        "description": "Take time to pamper yourself with a visit to the full-service spa. Additional features at this Art Deco hotel include complimentary wireless Internet access, concierge services, and gift shops/newsstands.<br />Distances are displayed to the nearest 0.1 mile and kilometer. <br /> <p>Central Park - 0.4 km / 0.2 mi <br /> Metropolitan Museum of Art - 0.5 km / 0.3 mi <br /> Central Park Zoo - 1.1 km / 0.7 mi <br /> Solomon R. Guggenheim Museum - 1.1 km / 0.7 mi <br /> American Museum of Natural History - 1.4 km / 0.9 mi <br /> 5th Avenue - 1.6 km / 1 mi <br /> Memorial Sloan-Kettering Cancer Center - 1.6 km / 1 mi <br /> Mount Sinai Hospital - 1.8 km / 1.1 mi <br /> Trump Tower - 1.8 km / 1.1 mi <br /> Columbus Circle - 2.1 km / 1.3 mi <br /> Carnegie Hall - 2.1 km / 1.3 mi <br /> Lincoln Center - 2.2 km / 1.3 mi <br /> Beacon Theater - 2.2 km / 1.3 mi <br /> Museum of Modern Art - 2.2 km / 1.4 mi <br /> St. Patrick's Cathedral - 2.2 km / 1.4 mi <br /> </p><p>The nearest airports are:<br />LaGuardia Airport (LGA) - 15.2 km / 9.5 mi<br /> John F. Kennedy Intl. Airport (JFK) - 32.2 km / 20 mi<br /> Newark Liberty Intl. Airport (EWR) - 30.4 km / 18.9 mi<br /> New York, NY (NYS-Skyports Seaplane Base) - 6 km / 3.8 mi<br /> Teterboro, NJ (TEB) - 23.4 km / 14.5 mi<br /> </p><p>The preferred airport for The Carlyle, A Rosewood Hotel is LaGuardia Airport (LGA). </p><br />Featured amenities include a business center, limo/town car service, and express check-in.<br />Satisfy your appetite at the hotel's coffee shop/cafe. Wrap up your day with a drink at the bar/lounge. Continental breakfasts are available for a fee.<br />Near Central Park<br />With a stay at The Carlyle, A Rosewood Hotel, you'll be centrally located in New York, just a 5-minute walk from Central Park and 7 minutes by foot from Metropolitan Museum of Art.  This 5-star hotel is 1.8 mi (2.8 km) from Broadway and 1.9 mi (3.1 km) from Times Square.<br />Make yourself at home in one of the 188 guestrooms featuring minibars and espresso makers. Flat-screen televisions with cable programming provide entertainment, while complimentary wireless Internet access keeps you connected. Private bathrooms have complimentary toiletries and hair dryers. Conveniences include phones, as well as safes and desks.",
        "location": {
            "coordinates": [
                -73.96337,
                40.774612
            ],
            "crs": {
                "properties": {
                    "name": "EPSG:4326"
                },
                "type": "name"
            },
            "type": "Point"
        },
        "category": "Hotel",
        "property_id": "40553",
        "popular_amenities": {
            "Electric car charging station": [
                "Electric car charging station"
            ],
            "Gym": [
                "Fitness facilities"
            ],
            "WiFi included": [
                "Free WiFi"
            ],
            "nil": [
                "Stair-free path to entrance",
                "Internet access in public areas - high speed",
                "Wedding services",
                "Luggage storage",
                "Health club",
                "Laundry facilities",
                "Wheelchair accessible (may have limitations)",
                "Fireplace in lobby",
                "Smoke-free property",
                "Wheelchair-accessible registration desk",
                "Tours/ticket assistance",
                "Hair salon",
                "Breakfast available (surcharge)",
                "Internet access - wireless",
                "Free newspapers in lobby",
                "Safe-deposit box at front desk",
                "24-hour front desk",
                "Wheelchair-accessible path to elevator",
                "Shopping on site",
                "Valet parking (surcharge)",
                "Bicycle rentals nearby",
                "Porter/bellhop",
                "Multilingual staff",
                "Wheelchair-accessible concierge desk",
                "Number of meeting rooms - 1",
                "Express check-in",
                "Gift shops or newsstand",
                "Dry cleaning/laundry service",
                "Limo or town car service available",
                "Number of bars/lounges - 1",
                "Full-service spa",
                "Elevator",
                "Concierge services",
                "Business center",
                "Number of coffee shops/cafes - 1",
                "Express check-out"
            ]
        },
        "public_price": 9155.19,
        "total_price": 9155.19,
        "bye_line": "Near Central Park",
        "chain": "Rosewood Hotels",
        "guest_ratings": {
            "amenities": 4.7,
            "cleanliness": 4.7,
            "comfort": 4.5,
            "condition": 4.4,
            "count": 590,
            "overall": 4.6,
            "service": 4.7
        },
        "images": [
            {
                "default": true,
                "caption": "Primary image",
                "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/w1989h1295x11y17-bde6524a_z.jpg",
                "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/w1989h1295x11y17-bde6524a_b.jpg"
            },
            {
                "default": false,
                "caption": "Lobby",
                "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/8dbe4499_z.jpg",
                "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/8dbe4499_b.jpg"
            },
            {
                "default": false,
                "caption": "Lobby",
                "hires": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/cd90bea5_z.jpg",
                "lores": "https://i.travelapi.com/lodging/1000000/50000/40600/40553/cd90bea5_b.jpg"
            }
        ],
        "review_count": 0,
        "star_rating": 5.0,
        "search_id": "a3fa7d9b-ed80-451a-95a9-39b69914fcd0"
    }
}