Authorized Lodge Bonitafield
hotel · Bonitafield · $1261.03+/night · ★ 4.6 (1739)
97535 Bath Road
wifibusiness-center
Overview
hotels / #140
hotel · Bonitafield · $1261.03+/night · ★ 4.6 (1739)
97535 Bath Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/140" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/140" ); 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/140"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/140"
)
hotel = res.json() Response
{
"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"
}