example-data.com

hotels / #95

Creative Hotel Fountainebleau

hotel · Fountainebleau · $695.63+/night · ★ 2.7 (4582)

1673 Virginia Points

laundrywifispabar

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/95"
)
hotel = res.json()
{
  "id": 95,
  "name": "Creative Hotel Fountainebleau",
  "slug": "creative-hotel-fountainebleau-95",
  "brand": "Hyatt",
  "countryAlpha2": "CA",
  "city": "Fountainebleau",
  "address": "1673 Virginia Points",
  "latitude": -49.343454,
  "longitude": -156.495724,
  "starRating": 5,
  "rating": 2.7,
  "ratingCount": 4582,
  "priceFromPerNight": 695.63,
  "currency": "JPY",
  "amenities": [
    "laundry",
    "wifi",
    "spa",
    "bar"
  ],
  "createdAt": "2025-06-10T20:21:54.566Z"
}
Draftbit