Shameful Resort North Otho
hotel · North Otho · $266.46+/night · ★ 4.3 (4974)
1900 Bailey Cliffs
restaurantspagymcasinoairport-shuttlebar
hotels / #53
hotel · North Otho · $266.46+/night · ★ 4.3 (4974)
1900 Bailey Cliffs
curl -sS \
"https://example-data.com/api/v1/hotels/53" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/53"
);
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/53"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/53"
)
hotel = res.json() {
"id": 53,
"name": "Shameful Resort North Otho",
"slug": "shameful-resort-north-otho-53",
"brand": null,
"countryAlpha2": "EG",
"city": "North Otho",
"address": "1900 Bailey Cliffs",
"latitude": 59.702389,
"longitude": -179.154696,
"starRating": 5,
"rating": 4.3,
"ratingCount": 4974,
"priceFromPerNight": 266.46,
"currency": "CAD",
"amenities": [
"restaurant",
"spa",
"gym",
"casino",
"airport-shuttle",
"bar"
],
"createdAt": "2025-03-31T22:41:23.184Z"
}