example-data.com

hotels / #92

Steep Hotel Bettyborough

hotel · Bettyborough · $1074.58+/night · ★ 4.8 (2988)

8976 Helga Hills

pet-friendlyroom-servicebarcasino

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/92"
)
hotel = res.json()
{
  "id": 92,
  "name": "Steep Hotel Bettyborough",
  "slug": "steep-hotel-bettyborough-92",
  "brand": "Radisson",
  "countryAlpha2": "NL",
  "city": "Bettyborough",
  "address": "8976 Helga Hills",
  "latitude": -28.792253,
  "longitude": 105.617569,
  "starRating": 3,
  "rating": 4.8,
  "ratingCount": 2988,
  "priceFromPerNight": 1074.58,
  "currency": "TRY",
  "amenities": [
    "pet-friendly",
    "room-service",
    "bar",
    "casino"
  ],
  "createdAt": "2025-07-30T03:07:14.473Z"
}
Draftbit