Tasty Hotel South Veldahaven
hotel · South Veldahaven · $788.48+/night · ★ 2.5 (4893)
54960 Smith Mews
wifiroom-servicerestaurantlaundrycasinoparkinggym
hotels / #54
hotel · South Veldahaven · $788.48+/night · ★ 2.5 (4893)
54960 Smith Mews
curl -sS \
"https://example-data.com/api/v1/hotels/54" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/54"
);
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/54"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/54"
)
hotel = res.json() {
"id": 54,
"name": "Tasty Hotel South Veldahaven",
"slug": "tasty-hotel-south-veldahaven-54",
"brand": "Four Seasons",
"countryAlpha2": "JP",
"city": "South Veldahaven",
"address": "54960 Smith Mews",
"latitude": -52.756774,
"longitude": -83.840702,
"starRating": 2,
"rating": 2.5,
"ratingCount": 4893,
"priceFromPerNight": 788.48,
"currency": "SGD",
"amenities": [
"wifi",
"room-service",
"restaurant",
"laundry",
"casino",
"parking",
"gym"
],
"createdAt": "2024-11-24T13:12:18.496Z"
}