example-data.com

hotels / #85

Winding Lodge Daughertycester

hotel · Daughertycester · $1667.22+/night · ★ 3.3 (3026)

33039 N Main Street

airport-shuttlerestaurantbar

Component variants

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

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