Enchanting Inn Hirthestead
hotel · Hirthestead · $1342.21+/night · ★ 4.8 (499)
163 Ernser Plain
wificasinoconciergelaundrygymroom-service
hotels / #12
hotel · Hirthestead · $1342.21+/night · ★ 4.8 (499)
163 Ernser Plain
curl -sS \
"https://example-data.com/api/v1/hotels/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/12"
);
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/12"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/12"
)
hotel = res.json() {
"id": 12,
"name": "Enchanting Inn Hirthestead",
"slug": "enchanting-inn-hirthestead-12",
"brand": "Hyatt",
"countryAlpha2": "GB",
"city": "Hirthestead",
"address": "163 Ernser Plain",
"latitude": -19.526628,
"longitude": 114.0422,
"starRating": 5,
"rating": 4.8,
"ratingCount": 499,
"priceFromPerNight": 1342.21,
"currency": "GBP",
"amenities": [
"wifi",
"casino",
"concierge",
"laundry",
"gym",
"room-service"
],
"createdAt": "2025-08-24T16:05:55.561Z"
}