Circular Palace East Kennedifort
hotel · East Kennedifort · $1226.29+/night · ★ 3.5 (4585)
125 Trenton Points
beach-accessgymbusiness-center
Overview
hotels / #108
hotel · East Kennedifort · $1226.29+/night · ★ 3.5 (4585)
125 Trenton Points
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/108" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/108" ); 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/108"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/108"
)
hotel = res.json() Response
{
"id": 108,
"name": "Circular Palace East Kennedifort",
"slug": "circular-palace-east-kennedifort-108",
"brand": "Hilton",
"countryAlpha2": "KE",
"city": "East Kennedifort",
"address": "125 Trenton Points",
"latitude": -46.390382,
"longitude": -85.060425,
"starRating": 3,
"rating": 3.5,
"ratingCount": 4585,
"priceFromPerNight": 1226.29,
"currency": "SGD",
"amenities": [
"beach-access",
"gym",
"business-center"
],
"createdAt": "2024-07-13T21:19:53.740Z"
}