Genuine Hotel Fort Roma
hotel · Fort Roma · $297.06+/night · ★ 3.9 (613)
29945 Schuppe Crossroad
poollaundry
Overview
hotels / #67
hotel · Fort Roma · $297.06+/night · ★ 3.9 (613)
29945 Schuppe Crossroad
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/67" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/67" ); 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/67"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/67"
)
hotel = res.json() Response
{
"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"
}