Authorized Lodge Bonitafield
hotel · Bonitafield · $1261.03+/night · ★ 4.6 (1739)
97535 Bath Road
wifibusiness-center
hotels / #140
hotel · Bonitafield · $1261.03+/night · ★ 4.6 (1739)
97535 Bath Road
curl -sS \
"https://example-data.com/api/v1/hotels/140" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/140"
);
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/140"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/140"
)
hotel = res.json() {
"id": 140,
"name": "Authorized Lodge Bonitafield",
"slug": "authorized-lodge-bonitafield-140",
"brand": "Hilton",
"countryAlpha2": "CO",
"city": "Bonitafield",
"address": "97535 Bath Road",
"latitude": 42.164541,
"longitude": -28.689101,
"starRating": 2,
"rating": 4.6,
"ratingCount": 1739,
"priceFromPerNight": 1261.03,
"currency": "AED",
"amenities": [
"wifi",
"business-center"
],
"createdAt": "2026-03-03T00:38:07.957Z"
}