Parched Resort North Earnest
hotel · North Earnest · $991.04+/night · ★ 2.3 (4716)
360 Rebeka Gateway
parkingcasinorestaurant
hotels / #9
hotel · North Earnest · $991.04+/night · ★ 2.3 (4716)
360 Rebeka Gateway
curl -sS \
"https://example-data.com/api/v1/hotels/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/9"
);
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/9"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/9"
)
hotel = res.json() {
"id": 9,
"name": "Parched Resort North Earnest",
"slug": "parched-resort-north-earnest-9",
"brand": null,
"countryAlpha2": "SG",
"city": "North Earnest",
"address": "360 Rebeka Gateway",
"latitude": 56.473278,
"longitude": 6.792339,
"starRating": 5,
"rating": 2.3,
"ratingCount": 4716,
"priceFromPerNight": 991.04,
"currency": "CAD",
"amenities": [
"parking",
"casino",
"restaurant"
],
"createdAt": "2025-10-06T02:33:20.070Z"
}