example-data.com

hotels / #120

Wiggly Lodge Schusterhaven

hotel · Schusterhaven · $548.46+/night · ★ 4.0 (3301)

6981 Center Road

casinoconcierge

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/120"
)
hotel = res.json()
{
  "id": 120,
  "name": "Wiggly Lodge Schusterhaven",
  "slug": "wiggly-lodge-schusterhaven-120",
  "brand": null,
  "countryAlpha2": "SE",
  "city": "Schusterhaven",
  "address": "6981 Center Road",
  "latitude": 50.971168,
  "longitude": -16.440179,
  "starRating": 4,
  "rating": 4,
  "ratingCount": 3301,
  "priceFromPerNight": 548.46,
  "currency": "EUR",
  "amenities": [
    "casino",
    "concierge"
  ],
  "createdAt": "2026-02-21T17:46:47.423Z"
}
Draftbit