Competent Lodge Fort Tressaburgh
hotel · Fort Tressaburgh · $1689.1+/night · ★ 2.3 (1714)
899 Tremaine Bridge
casinoairport-shuttlegymbeach-accessspa
hotels / #55
hotel · Fort Tressaburgh · $1689.1+/night · ★ 2.3 (1714)
899 Tremaine Bridge
curl -sS \
"https://example-data.com/api/v1/hotels/55" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/55"
);
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/55"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/55"
)
hotel = res.json() {
"id": 55,
"name": "Competent Lodge Fort Tressaburgh",
"slug": "competent-lodge-fort-tressaburgh-55",
"brand": "Wyndham",
"countryAlpha2": "ET",
"city": "Fort Tressaburgh",
"address": "899 Tremaine Bridge",
"latitude": 10.946743,
"longitude": -62.668402,
"starRating": 4,
"rating": 2.3,
"ratingCount": 1714,
"priceFromPerNight": 1689.1,
"currency": "SGD",
"amenities": [
"casino",
"airport-shuttle",
"gym",
"beach-access",
"spa"
],
"createdAt": "2026-05-18T00:53:37.203Z"
}