example-data.com

hotels / #35

Insignificant Hotel East Jillian

hotel · East Jillian · $631.44+/night · ★ 3.3 (3882)

1921 Cronin Walk

beach-accesspet-friendlyrestaurantairport-shuttlelaundrycasinogym

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/35"
)
hotel = res.json()
{
  "id": 35,
  "name": "Insignificant Hotel East Jillian",
  "slug": "insignificant-hotel-east-jillian-35",
  "brand": "IHG",
  "countryAlpha2": "PE",
  "city": "East Jillian",
  "address": "1921 Cronin Walk",
  "latitude": 41.790556,
  "longitude": 33.79625,
  "starRating": 4,
  "rating": 3.3,
  "ratingCount": 3882,
  "priceFromPerNight": 631.44,
  "currency": "AUD",
  "amenities": [
    "beach-access",
    "pet-friendly",
    "restaurant",
    "airport-shuttle",
    "laundry",
    "casino",
    "gym"
  ],
  "createdAt": "2025-07-08T15:53:42.552Z"
}
Draftbit