Parched Resort North Earnest
hotel · North Earnest · $991.04+/night · ★ 2.3 (4716)
360 Rebeka Gateway
parkingcasinorestaurant
Overview
hotels / #9
hotel · North Earnest · $991.04+/night · ★ 2.3 (4716)
360 Rebeka Gateway
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/9" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/9" ); 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/9"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/9"
)
hotel = res.json() Response
{
"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"
}