Exotic Palace Denesikland
hotel · Denesikland · $1843.39+/night · ★ 4.4 (3102)
789 Manor Drive
pet-friendlyroom-servicerestaurantparkinglaundryairport-shuttlebar
Overview
hotels / #109
hotel · Denesikland · $1843.39+/night · ★ 4.4 (3102)
789 Manor Drive
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/109" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/109" ); 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/109"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/109"
)
hotel = res.json() Response
{
"id": 109,
"name": "Exotic Palace Denesikland",
"slug": "exotic-palace-denesikland-109",
"brand": null,
"countryAlpha2": "AU",
"city": "Denesikland",
"address": "789 Manor Drive",
"latitude": 8.413393,
"longitude": -66.141593,
"starRating": 3,
"rating": 4.4,
"ratingCount": 3102,
"priceFromPerNight": 1843.39,
"currency": "TRY",
"amenities": [
"pet-friendly",
"room-service",
"restaurant",
"parking",
"laundry",
"airport-shuttle",
"bar"
],
"createdAt": "2024-06-03T22:52:31.431Z"
}