Obedient Palace Port Desiree
hotel · Port Desiree · $1026.88+/night · ★ 3.6 (2357)
14524 E State Street
parkingbusiness-centerwifipet-friendlybeach-accesspool
Overview
hotels / #80
hotel · Port Desiree · $1026.88+/night · ★ 3.6 (2357)
14524 E State Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/80" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/80" ); 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/80"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/80"
)
hotel = res.json() Response
{
"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"
}