example-data.com

hotels / #39

Exotic Palace Carmenburgh

hotel · Carmenburgh · $1324.38+/night · ★ 3.7 (390)

8416 N College Street

casinoairport-shuttleparkinglaundrygymspaconciergebar

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/39"
)
hotel = res.json()
{
  "id": 39,
  "name": "Exotic Palace Carmenburgh",
  "slug": "exotic-palace-carmenburgh-39",
  "brand": "IHG",
  "countryAlpha2": "DE",
  "city": "Carmenburgh",
  "address": "8416 N College Street",
  "latitude": 52.173883,
  "longitude": -38.102093,
  "starRating": 4,
  "rating": 3.7,
  "ratingCount": 390,
  "priceFromPerNight": 1324.38,
  "currency": "AED",
  "amenities": [
    "casino",
    "airport-shuttle",
    "parking",
    "laundry",
    "gym",
    "spa",
    "concierge",
    "bar"
  ],
  "createdAt": "2026-01-31T20:17:59.700Z"
}
Draftbit