Favorite Resort Fort Eliezer
hotel · Fort Eliezer · $1841.81+/night · ★ 2.1 (818)
994 Hillside Close
laundrybusiness-centerrestaurant
hotels / #28
hotel · Fort Eliezer · $1841.81+/night · ★ 2.1 (818)
994 Hillside Close
curl -sS \
"https://example-data.com/api/v1/hotels/28" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/28"
);
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/28"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/28"
)
hotel = res.json() {
"id": 28,
"name": "Favorite Resort Fort Eliezer",
"slug": "favorite-resort-fort-eliezer-28",
"brand": "Ritz-Carlton",
"countryAlpha2": "DK",
"city": "Fort Eliezer",
"address": "994 Hillside Close",
"latitude": -5.984681,
"longitude": 45.67518,
"starRating": 4,
"rating": 2.1,
"ratingCount": 818,
"priceFromPerNight": 1841.81,
"currency": "AUD",
"amenities": [
"laundry",
"business-center",
"restaurant"
],
"createdAt": "2025-07-26T22:54:15.074Z"
}