Awesome Lodge Krismouth
hotel · Krismouth · $587.28+/night · ★ 2.3 (1909)
59214 Erdman Park
spaconciergegymparkingbusiness-centerrestaurantpet-friendly
hotels / #30
hotel · Krismouth · $587.28+/night · ★ 2.3 (1909)
59214 Erdman Park
curl -sS \
"https://example-data.com/api/v1/hotels/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/30"
);
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/30"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/30"
)
hotel = res.json() {
"id": 30,
"name": "Awesome Lodge Krismouth",
"slug": "awesome-lodge-krismouth-30",
"brand": "Ritz-Carlton",
"countryAlpha2": "BR",
"city": "Krismouth",
"address": "59214 Erdman Park",
"latitude": 43.790532,
"longitude": -121.155121,
"starRating": 3,
"rating": 2.3,
"ratingCount": 1909,
"priceFromPerNight": 587.28,
"currency": "THB",
"amenities": [
"spa",
"concierge",
"gym",
"parking",
"business-center",
"restaurant",
"pet-friendly"
],
"createdAt": "2024-11-02T13:25:05.938Z"
}