Agitated Palace Mosciskiview
hotel · Mosciskiview · $1571.13+/night · ★ 4.4 (3031)
809 The Laurels
business-centerwifi
hotels / #32
hotel · Mosciskiview · $1571.13+/night · ★ 4.4 (3031)
809 The Laurels
curl -sS \
"https://example-data.com/api/v1/hotels/32" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/32"
);
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/32"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/32"
)
hotel = res.json() {
"id": 32,
"name": "Agitated Palace Mosciskiview",
"slug": "agitated-palace-mosciskiview-32",
"brand": "Accor",
"countryAlpha2": "EG",
"city": "Mosciskiview",
"address": "809 The Laurels",
"latitude": 41.685432,
"longitude": 53.201221,
"starRating": 3,
"rating": 4.4,
"ratingCount": 3031,
"priceFromPerNight": 1571.13,
"currency": "AUD",
"amenities": [
"business-center",
"wifi"
],
"createdAt": "2024-10-19T00:08:53.389Z"
}