Tasty Hotel South Veldahaven
hotel · South Veldahaven · $788.48+/night · ★ 2.5 (4893)
54960 Smith Mews
wifiroom-servicerestaurantlaundrycasinoparkinggym
Overview
hotels / #54
hotel · South Veldahaven · $788.48+/night · ★ 2.5 (4893)
54960 Smith Mews
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/54" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/54" ); 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/54"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/54"
)
hotel = res.json() Response
{
"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"
}