Genuine Hotel Fort Roma
hotel · Fort Roma · $297.06+/night · ★ 3.9 (613)
29945 Schuppe Crossroad
poollaundry
hotels / #67
hotel · Fort Roma · $297.06+/night · ★ 3.9 (613)
29945 Schuppe Crossroad
curl -sS \
"https://example-data.com/api/v1/hotels/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/67"
);
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/67"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/67"
)
hotel = res.json() {
"id": 67,
"name": "Genuine Hotel Fort Roma",
"slug": "genuine-hotel-fort-roma-67",
"brand": "Marriott",
"countryAlpha2": "SG",
"city": "Fort Roma",
"address": "29945 Schuppe Crossroad",
"latitude": -33.894521,
"longitude": -162.336296,
"starRating": 2,
"rating": 3.9,
"ratingCount": 613,
"priceFromPerNight": 297.06,
"currency": "SGD",
"amenities": [
"pool",
"laundry"
],
"createdAt": "2026-02-22T17:39:19.876Z"
}