example-data.com

hotels / #115

Our Suites Kaleyburgh

hotel · Kaleyburgh · $1788.33+/night · ★ 4.0 (2789)

84866 Princess Street

pet-friendlybusiness-centerrestaurantconcierge

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/115"
)
hotel = res.json()
{
  "id": 115,
  "name": "Our Suites Kaleyburgh",
  "slug": "our-suites-kaleyburgh-115",
  "brand": "Hilton",
  "countryAlpha2": "ZA",
  "city": "Kaleyburgh",
  "address": "84866 Princess Street",
  "latitude": 48.214813,
  "longitude": -177.063284,
  "starRating": 5,
  "rating": 4,
  "ratingCount": 2789,
  "priceFromPerNight": 1788.33,
  "currency": "TRY",
  "amenities": [
    "pet-friendly",
    "business-center",
    "restaurant",
    "concierge"
  ],
  "createdAt": "2025-12-31T18:47:11.324Z"
}
Draftbit