Quarterly Palace Fort Teresaberg
hotel · Fort Teresaberg · $1515.45+/night · ★ 4.7 (2995)
9654 Herzog Track
gymwifilaundrysparestaurant
Overview
hotels / #33
hotel · Fort Teresaberg · $1515.45+/night · ★ 4.7 (2995)
9654 Herzog Track
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/33" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/33" ); 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/33"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/33"
)
hotel = res.json() Response
{
"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"
}