Fragrant Suites Celestinefurt
hotel · Celestinefurt · $1276.67+/night · ★ 4.1 (1895)
4807 Carter Mount
laundrybeach-accessconciergewifipoolairport-shuttlecasinobar
Overview
hotels / #68
hotel · Celestinefurt · $1276.67+/night · ★ 4.1 (1895)
4807 Carter Mount
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/68" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/68" ); 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/68"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/68"
)
hotel = res.json() Response
{
"id": 68,
"name": "Fragrant Suites Celestinefurt",
"slug": "fragrant-suites-celestinefurt-68",
"brand": "Radisson",
"countryAlpha2": "ZA",
"city": "Celestinefurt",
"address": "4807 Carter Mount",
"latitude": 45.272863,
"longitude": 47.442848,
"starRating": 4,
"rating": 4.1,
"ratingCount": 1895,
"priceFromPerNight": 1276.67,
"currency": "CAD",
"amenities": [
"laundry",
"beach-access",
"concierge",
"wifi",
"pool",
"airport-shuttle",
"casino",
"bar"
],
"createdAt": "2025-03-25T22:34:38.978Z"
}