Distinct Palace Eulahview
hotel · Eulahview · $716.32+/night · ★ 4.0 (2155)
950 Gillian Meadow
casinobusiness-centergymspa
hotels / #88
hotel · Eulahview · $716.32+/night · ★ 4.0 (2155)
950 Gillian Meadow
curl -sS \
"https://example-data.com/api/v1/hotels/88" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/88"
);
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/88"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/88"
)
hotel = res.json() {
"id": 88,
"name": "Distinct Palace Eulahview",
"slug": "distinct-palace-eulahview-88",
"brand": "Wyndham",
"countryAlpha2": "IS",
"city": "Eulahview",
"address": "950 Gillian Meadow",
"latitude": 31.488303,
"longitude": 40.390152,
"starRating": 4,
"rating": 4,
"ratingCount": 2155,
"priceFromPerNight": 716.32,
"currency": "EUR",
"amenities": [
"casino",
"business-center",
"gym",
"spa"
],
"createdAt": "2025-01-18T09:38:53.296Z"
}