example-data.com

hotels / #118

Blond Suites Rohanfort

hotel · Rohanfort · $1286.98+/night · ★ 3.4 (2002)

30731 E 4th Avenue

airport-shuttlespaparkingroom-servicebarconcierge

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/118"
)
hotel = res.json()
{
  "id": 118,
  "name": "Blond Suites Rohanfort",
  "slug": "blond-suites-rohanfort-118",
  "brand": "IHG",
  "countryAlpha2": "CO",
  "city": "Rohanfort",
  "address": "30731 E 4th Avenue",
  "latitude": -32.97784,
  "longitude": -88.302836,
  "starRating": 4,
  "rating": 3.4,
  "ratingCount": 2002,
  "priceFromPerNight": 1286.98,
  "currency": "SGD",
  "amenities": [
    "airport-shuttle",
    "spa",
    "parking",
    "room-service",
    "bar",
    "concierge"
  ],
  "createdAt": "2026-04-02T05:43:23.449Z"
}
Draftbit