example-data.com

hotels / #56

Unlucky Resort New Makennachester

hotel · New Makennachester · $1376.37+/night · ★ 2.2 (1749)

96667 Julian Summit

conciergepet-friendlypoolcasinosparoom-servicelaundryparking

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/56"
)
hotel = res.json()
{
  "id": 56,
  "name": "Unlucky Resort New Makennachester",
  "slug": "unlucky-resort-new-makennachester-56",
  "brand": "Hyatt",
  "countryAlpha2": "PE",
  "city": "New Makennachester",
  "address": "96667 Julian Summit",
  "latitude": -27.56175,
  "longitude": -140.678297,
  "starRating": 5,
  "rating": 2.2,
  "ratingCount": 1749,
  "priceFromPerNight": 1376.37,
  "currency": "EUR",
  "amenities": [
    "concierge",
    "pet-friendly",
    "pool",
    "casino",
    "spa",
    "room-service",
    "laundry",
    "parking"
  ],
  "createdAt": "2026-03-05T15:52:50.211Z"
}
Draftbit