Agitated Palace Mosciskiview
hotel · Mosciskiview · $1571.13+/night · ★ 4.4 (3031)
809 The Laurels
business-centerwifi
Overview
hotels / #32
hotel · Mosciskiview · $1571.13+/night · ★ 4.4 (3031)
809 The Laurels
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/32" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/32" ); 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/32"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/32"
)
hotel = res.json() Response
{
"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"
}