Physical Suites Kaseyville
hotel · Kaseyville · $729.38+/night · ★ 2.4 (110)
4755 Gavin Cliff
poolrestaurantbusiness-centerbeach-access
hotels / #25
hotel · Kaseyville · $729.38+/night · ★ 2.4 (110)
4755 Gavin Cliff
curl -sS \
"https://example-data.com/api/v1/hotels/25" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/25"
);
const hotel = await res.json();import type { Hotel } from "https://example-data.com/types/hotels.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/hotels/25"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/25"
)
hotel = res.json() {
"id": 25,
"name": "Physical Suites Kaseyville",
"slug": "physical-suites-kaseyville-25",
"brand": "Ritz-Carlton",
"countryAlpha2": "IN",
"city": "Kaseyville",
"address": "4755 Gavin Cliff",
"latitude": -2.103434,
"longitude": 2.464975,
"starRating": 4,
"rating": 2.4,
"ratingCount": 110,
"priceFromPerNight": 729.38,
"currency": "THB",
"amenities": [
"pool",
"restaurant",
"business-center",
"beach-access"
],
"createdAt": "2024-12-29T13:08:21.744Z"
}