Quarterly Palace Fort Teresaberg
hotel · Fort Teresaberg · $1515.45+/night · ★ 4.7 (2995)
9654 Herzog Track
gymwifilaundrysparestaurant
hotels / #33
hotel · Fort Teresaberg · $1515.45+/night · ★ 4.7 (2995)
9654 Herzog Track
curl -sS \
"https://example-data.com/api/v1/hotels/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/33"
);
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/33"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/33"
)
hotel = res.json() {
"id": 33,
"name": "Quarterly Palace Fort Teresaberg",
"slug": "quarterly-palace-fort-teresaberg-33",
"brand": "IHG",
"countryAlpha2": "CA",
"city": "Fort Teresaberg",
"address": "9654 Herzog Track",
"latitude": -48.76575,
"longitude": 61.114734,
"starRating": 2,
"rating": 4.7,
"ratingCount": 2995,
"priceFromPerNight": 1515.45,
"currency": "EUR",
"amenities": [
"gym",
"wifi",
"laundry",
"spa",
"restaurant"
],
"createdAt": "2024-09-28T17:04:01.266Z"
}