Blond Suites Rohanfort
hotel · Rohanfort · $1286.98+/night · ★ 3.4 (2002)
30731 E 4th Avenue
airport-shuttlespaparkingroom-servicebarconcierge
Overview
hotels / #118
hotel · Rohanfort · $1286.98+/night · ★ 3.4 (2002)
30731 E 4th Avenue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/118" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/118" ); 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/118"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/118"
)
hotel = res.json() Response
{
"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"
}