Bare Lodge Ulisesburgh
hotel · Ulisesburgh · $1286.34+/night · ★ 4.4 (986)
410 North Avenue
beach-accessrestaurantgympet-friendlyparkinglaundry
hotels / #78
hotel · Ulisesburgh · $1286.34+/night · ★ 4.4 (986)
410 North Avenue
curl -sS \
"https://example-data.com/api/v1/hotels/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/78"
);
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/78"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/78"
)
hotel = res.json() {
"id": 78,
"name": "Bare Lodge Ulisesburgh",
"slug": "bare-lodge-ulisesburgh-78",
"brand": "Ritz-Carlton",
"countryAlpha2": "BR",
"city": "Ulisesburgh",
"address": "410 North Avenue",
"latitude": 12.675334,
"longitude": -88.299507,
"starRating": 3,
"rating": 4.4,
"ratingCount": 986,
"priceFromPerNight": 1286.34,
"currency": "EUR",
"amenities": [
"beach-access",
"restaurant",
"gym",
"pet-friendly",
"parking",
"laundry"
],
"createdAt": "2025-09-30T21:16:46.353Z"
}