Happy-go-lucky Suites West Brendon
hotel · West Brendon · $978.83+/night · ★ 2.3 (6)
77149 W Bridge Street
airport-shuttleconciergebar
Overview
hotels / #124
hotel · West Brendon · $978.83+/night · ★ 2.3 (6)
77149 W Bridge Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/124" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/124" ); 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/124"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/124"
)
hotel = res.json() Response
{
"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"
}