Skip to content

Instantly share code, notes, and snippets.

@thanos
Last active August 26, 2023 17:24
Show Gist options
  • Save thanos/45f2752856538c27c73cc1d57e8e7e4e to your computer and use it in GitHub Desktop.
Save thanos/45f2752856538c27c73cc1d57e8e7e4e to your computer and use it in GitHub Desktop.
searching for hotel availability using the Xeni Travel API
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 '{
"check_in": "2023-08-27",
"check_out": "2023-08-30",
"destination_id": "bbc35c49-d2a7-431a-ac40-a4944c3a00e7",
"occupancies": [
{
"adults": 2,
"children_ages": [
10,
2
]
},
{
"adults": 2
}
]
}'
{
"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"
}
}
@thanos
Copy link
Author

thanos commented Jul 23, 2023

Screen Shot 2023-06-19 at 8 55 29 PM

@thanos
Copy link
Author

thanos commented Jul 23, 2023

Screen Shot 2023-06-19 at 8 51 53 PM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment