example-data.com

hotels / #114

Thin Lodge Lake Cydney

hotel · Lake Cydney · $1087.36+/night · ★ 4.5 (383)

22913 Birdie Orchard

spacasinorestaurantgym

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/114"
)
hotel = res.json()
{
  "id": 114,
  "name": "Thin Lodge Lake Cydney",
  "slug": "thin-lodge-lake-cydney-114",
  "brand": "Ritz-Carlton",
  "countryAlpha2": "IE",
  "city": "Lake Cydney",
  "address": "22913 Birdie Orchard",
  "latitude": -39.63176,
  "longitude": -94.879619,
  "starRating": 3,
  "rating": 4.5,
  "ratingCount": 383,
  "priceFromPerNight": 1087.36,
  "currency": "AUD",
  "amenities": [
    "spa",
    "casino",
    "restaurant",
    "gym"
  ],
  "createdAt": "2025-04-05T01:12:28.336Z"
}
Draftbit