Normal Resort Myahaven
hotel · Myahaven · $170.39+/night · ★ 3.3 (829)
4764 Clay Lane
spacasinoroom-service
hotels / #69
hotel · Myahaven · $170.39+/night · ★ 3.3 (829)
4764 Clay Lane
curl -sS \
"https://example-data.com/api/v1/hotels/69" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/69"
);
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/69"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/69"
)
hotel = res.json() {
"id": 69,
"name": "Normal Resort Myahaven",
"slug": "normal-resort-myahaven-69",
"brand": null,
"countryAlpha2": "NZ",
"city": "Myahaven",
"address": "4764 Clay Lane",
"latitude": 51.20061,
"longitude": -171.035982,
"starRating": 5,
"rating": 3.3,
"ratingCount": 829,
"priceFromPerNight": 170.39,
"currency": "USD",
"amenities": [
"spa",
"casino",
"room-service"
],
"createdAt": "2025-06-09T16:21:58.075Z"
}