Hairy Hotel New Enoch
hotel · New Enoch · $942.86+/night · ★ 4.5 (4350)
598 Williamson River
barrestaurantwifibusiness-centerparking
hotels / #91
hotel · New Enoch · $942.86+/night · ★ 4.5 (4350)
598 Williamson River
curl -sS \
"https://example-data.com/api/v1/hotels/91" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/91"
);
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/91"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/91"
)
hotel = res.json() {
"id": 91,
"name": "Hairy Hotel New Enoch",
"slug": "hairy-hotel-new-enoch-91",
"brand": null,
"countryAlpha2": "GR",
"city": "New Enoch",
"address": "598 Williamson River",
"latitude": -44.536018,
"longitude": -96.179103,
"starRating": 5,
"rating": 4.5,
"ratingCount": 4350,
"priceFromPerNight": 942.86,
"currency": "THB",
"amenities": [
"bar",
"restaurant",
"wifi",
"business-center",
"parking"
],
"createdAt": "2025-05-08T08:50:04.175Z"
}