example-data.com

hotels / #13

Partial Hotel Elizabeth

hotel · Elizabeth · $102.09+/night · ★ 3.2 (3278)

368 Estell Centers

wificasinoroom-service

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/13"
)
hotel = res.json()
{
  "id": 13,
  "name": "Partial Hotel Elizabeth",
  "slug": "partial-hotel-elizabeth-13",
  "brand": "Four Seasons",
  "countryAlpha2": "ET",
  "city": "Elizabeth",
  "address": "368 Estell Centers",
  "latitude": 25.586933,
  "longitude": 57.155354,
  "starRating": 4,
  "rating": 3.2,
  "ratingCount": 3278,
  "priceFromPerNight": 102.09,
  "currency": "TRY",
  "amenities": [
    "wifi",
    "casino",
    "room-service"
  ],
  "createdAt": "2025-05-26T23:20:37.542Z"
}
Draftbit