example-data.com

hotels / #109

Exotic Palace Denesikland

hotel · Denesikland · $1843.39+/night · ★ 4.4 (3102)

789 Manor Drive

pet-friendlyroom-servicerestaurantparkinglaundryairport-shuttlebar

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/109" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/109"
);
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/109"
);
const hotel = (await res.json()) as Hotel;
import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/109"
)
hotel = res.json()
{
  "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"
}
Draftbit