Dreary Hotel Alhambra
hotel · Alhambra · $91.88+/night · ★ 4.3 (2226)
9628 Littel Mills
wifiroom-servicecasinogymspapet-friendlyairport-shuttle
hotels / #83
hotel · Alhambra · $91.88+/night · ★ 4.3 (2226)
9628 Littel Mills
curl -sS \
"https://example-data.com/api/v1/hotels/83" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/83"
);
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/83"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/83"
)
hotel = res.json() {
"id": 83,
"name": "Dreary Hotel Alhambra",
"slug": "dreary-hotel-alhambra-83",
"brand": "Radisson",
"countryAlpha2": "VN",
"city": "Alhambra",
"address": "9628 Littel Mills",
"latitude": -38.476173,
"longitude": -65.500374,
"starRating": 5,
"rating": 4.3,
"ratingCount": 2226,
"priceFromPerNight": 91.88,
"currency": "USD",
"amenities": [
"wifi",
"room-service",
"casino",
"gym",
"spa",
"pet-friendly",
"airport-shuttle"
],
"createdAt": "2025-04-01T02:10:45.395Z"
}