example-data.com
Menu
Browse docs and collections

Overview

hotels / #39

Exotic Palace Carmenburgh

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

8416 N College Street

casinoairport-shuttleparkinglaundrygymspaconciergebar

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/hotels/39" \
  -H "Accept: application/json"

JavaScript example

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

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/39"
)
hotel = res.json()

Response

{
  "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"
}