example-data.com

hotels / #46

Insidious Palace East Janaestead

hotel · East Janaestead · $93.31+/night · ★ 4.4 (1958)

68039 W Elm Street

conciergelaundryrestaurantcasinowifibarbeach-accessairport-shuttle

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/46"
)
hotel = res.json()
{
  "id": 46,
  "name": "Insidious Palace East Janaestead",
  "slug": "insidious-palace-east-janaestead-46",
  "brand": "Marriott",
  "countryAlpha2": "KR",
  "city": "East Janaestead",
  "address": "68039 W Elm Street",
  "latitude": 18.513507,
  "longitude": 135.095484,
  "starRating": 5,
  "rating": 4.4,
  "ratingCount": 1958,
  "priceFromPerNight": 93.31,
  "currency": "GBP",
  "amenities": [
    "concierge",
    "laundry",
    "restaurant",
    "casino",
    "wifi",
    "bar",
    "beach-access",
    "airport-shuttle"
  ],
  "createdAt": "2025-07-18T16:49:42.879Z"
}
Draftbit