Honorable Palace Zemlakchester
hotel · Zemlakchester · $1826.22+/night · ★ 3.5 (2914)
4375 Kunde Tunnel
poolwifigymbarspalaundry
hotels / #75
hotel · Zemlakchester · $1826.22+/night · ★ 3.5 (2914)
4375 Kunde Tunnel
curl -sS \
"https://example-data.com/api/v1/hotels/75" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/75"
);
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/75"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/75"
)
hotel = res.json() {
"id": 75,
"name": "Honorable Palace Zemlakchester",
"slug": "honorable-palace-zemlakchester-75",
"brand": "IHG",
"countryAlpha2": "AE",
"city": "Zemlakchester",
"address": "4375 Kunde Tunnel",
"latitude": -31.692073,
"longitude": 121.435604,
"starRating": 2,
"rating": 3.5,
"ratingCount": 2914,
"priceFromPerNight": 1826.22,
"currency": "EUR",
"amenities": [
"pool",
"wifi",
"gym",
"bar",
"spa",
"laundry"
],
"createdAt": "2024-09-11T18:54:53.893Z"
}