example-data.com

hotels / #135

Gleaming Palace Huntersville

hotel · Huntersville · $1306.59+/night · ★ 3.3 (2469)

54573 Klein Pine

wificonciergebusiness-centercasinolaundryparkingpet-friendly

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/135"
)
hotel = res.json()
{
  "id": 135,
  "name": "Gleaming Palace Huntersville",
  "slug": "gleaming-palace-huntersville-135",
  "brand": "Radisson",
  "countryAlpha2": "AT",
  "city": "Huntersville",
  "address": "54573 Klein Pine",
  "latitude": 33.713057,
  "longitude": -60.826143,
  "starRating": 3,
  "rating": 3.3,
  "ratingCount": 2469,
  "priceFromPerNight": 1306.59,
  "currency": "SGD",
  "amenities": [
    "wifi",
    "concierge",
    "business-center",
    "casino",
    "laundry",
    "parking",
    "pet-friendly"
  ],
  "createdAt": "2026-04-01T03:46:00.319Z"
}
Draftbit