Thin Lodge Lake Cydney
hotel · Lake Cydney · $1087.36+/night · ★ 4.5 (383)
22913 Birdie Orchard
spacasinorestaurantgym
Overview
hotels / #114
hotel · Lake Cydney · $1087.36+/night · ★ 4.5 (383)
22913 Birdie Orchard
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/114" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/114" ); 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/114"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/114"
)
hotel = res.json() Response
{
"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"
}