Gleaming Palace Huntersville
hotel · Huntersville · $1306.59+/night · ★ 3.3 (2469)
54573 Klein Pine
wificonciergebusiness-centercasinolaundryparkingpet-friendly
Overview
hotels / #135
hotel · Huntersville · $1306.59+/night · ★ 3.3 (2469)
54573 Klein Pine
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/135" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/135" ); const hotel = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";
const res = await fetch(
"https://example-data.com/api/v1/hotels/135"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/135"
)
hotel = res.json() Response
{
"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"
}