Winding Lodge Daughertycester
hotel · Daughertycester · $1667.22+/night · ★ 3.3 (3026)
33039 N Main Street
airport-shuttlerestaurantbar
Overview
hotels / #85
hotel · Daughertycester · $1667.22+/night · ★ 3.3 (3026)
33039 N Main Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/85" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/85" ); 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/85"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/85"
)
hotel = res.json() Response
{
"id": 85,
"name": "Winding Lodge Daughertycester",
"slug": "winding-lodge-daughertycester-85",
"brand": "Four Seasons",
"countryAlpha2": "ID",
"city": "Daughertycester",
"address": "33039 N Main Street",
"latitude": 54.955189,
"longitude": 171.794852,
"starRating": 4,
"rating": 3.3,
"ratingCount": 3026,
"priceFromPerNight": 1667.22,
"currency": "USD",
"amenities": [
"airport-shuttle",
"restaurant",
"bar"
],
"createdAt": "2026-04-06T05:02:40.553Z"
}