example-data.com

hotels / #68

Fragrant Suites Celestinefurt

hotel · Celestinefurt · $1276.67+/night · ★ 4.1 (1895)

4807 Carter Mount

laundrybeach-accessconciergewifipoolairport-shuttlecasinobar

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/68" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/68"
);
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/68"
);
const hotel = (await res.json()) as Hotel;
import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/68"
)
hotel = res.json()
{
  "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"
}
Draftbit