Happy-go-lucky Suites West Brendon
hotel · West Brendon · $978.83+/night · ★ 2.3 (6)
77149 W Bridge Street
airport-shuttleconciergebar
hotels / #124
hotel · West Brendon · $978.83+/night · ★ 2.3 (6)
77149 W Bridge Street
curl -sS \
"https://example-data.com/api/v1/hotels/124" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/124"
);
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/124"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/124"
)
hotel = res.json() {
"id": 124,
"name": "Happy-go-lucky Suites West Brendon",
"slug": "happy-go-lucky-suites-west-brendon-124",
"brand": "Marriott",
"countryAlpha2": "ET",
"city": "West Brendon",
"address": "77149 W Bridge Street",
"latitude": -11.864207,
"longitude": 167.170304,
"starRating": 4,
"rating": 2.3,
"ratingCount": 6,
"priceFromPerNight": 978.83,
"currency": "GBP",
"amenities": [
"airport-shuttle",
"concierge",
"bar"
],
"createdAt": "2025-12-06T16:09:55.004Z"
}