Stormy Suites East Hillard
hotel · East Hillard · $119.84+/night · ★ 3.5 (3770)
46377 Mohr Run
conciergeparkingbeach-accessroom-servicecasinoairport-shuttle
hotels / #23
hotel · East Hillard · $119.84+/night · ★ 3.5 (3770)
46377 Mohr Run
curl -sS \
"https://example-data.com/api/v1/hotels/23" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/23"
);
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/23"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/23"
)
hotel = res.json() {
"id": 23,
"name": "Stormy Suites East Hillard",
"slug": "stormy-suites-east-hillard-23",
"brand": "Wyndham",
"countryAlpha2": "DK",
"city": "East Hillard",
"address": "46377 Mohr Run",
"latitude": -10.447026,
"longitude": 112.884978,
"starRating": 2,
"rating": 3.5,
"ratingCount": 3770,
"priceFromPerNight": 119.84,
"currency": "TRY",
"amenities": [
"concierge",
"parking",
"beach-access",
"room-service",
"casino",
"airport-shuttle"
],
"createdAt": "2025-06-05T11:21:05.026Z"
}