Enchanting Inn Hirthestead
hotel · Hirthestead · $1342.21+/night · ★ 4.8 (499)
163 Ernser Plain
wificasinoconciergelaundrygymroom-service
Overview
hotels / #12
hotel · Hirthestead · $1342.21+/night · ★ 4.8 (499)
163 Ernser Plain
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/12" ); const hotel = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";
const res = await fetch(
"https://example-data.com/api/v1/hotels/12"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/12"
)
hotel = res.json() Response
{
"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"
}