Obedient Palace Port Desiree
hotel · Port Desiree · $1026.88+/night · ★ 3.6 (2357)
14524 E State Street
parkingbusiness-centerwifipet-friendlybeach-accesspool
hotels / #80
hotel · Port Desiree · $1026.88+/night · ★ 3.6 (2357)
14524 E State Street
curl -sS \
"https://example-data.com/api/v1/hotels/80" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/80"
);
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/80"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/80"
)
hotel = res.json() {
"id": 80,
"name": "Obedient Palace Port Desiree",
"slug": "obedient-palace-port-desiree-80",
"brand": "Ritz-Carlton",
"countryAlpha2": "KE",
"city": "Port Desiree",
"address": "14524 E State Street",
"latitude": 13.87151,
"longitude": -150.056788,
"starRating": 4,
"rating": 3.6,
"ratingCount": 2357,
"priceFromPerNight": 1026.88,
"currency": "AUD",
"amenities": [
"parking",
"business-center",
"wifi",
"pet-friendly",
"beach-access",
"pool"
],
"createdAt": "2025-10-08T16:48:27.319Z"
}