Creative Hotel Fountainebleau
hotel · Fountainebleau · $695.63+/night · ★ 2.7 (4582)
1673 Virginia Points
laundrywifispabar
Overview
hotels / #95
hotel · Fountainebleau · $695.63+/night · ★ 2.7 (4582)
1673 Virginia Points
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/95" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/95" ); const hotel = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";
const res = await fetch(
"https://example-data.com/api/v1/hotels/95"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/95"
)
hotel = res.json() Response
{
"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"
}