Happy-go-lucky Suites Calebborough
hotel · Calebborough · $740.86+/night · ★ 3.5 (2429)
245 Lillian Greens
wifilaundry
Overview
hotels / #101
hotel · Calebborough · $740.86+/night · ★ 3.5 (2429)
245 Lillian Greens
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/101" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/101" ); 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/101"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/101"
)
hotel = res.json() Response
{
"id": 101,
"name": "Happy-go-lucky Suites Calebborough",
"slug": "happy-go-lucky-suites-calebborough-101",
"brand": "Wyndham",
"countryAlpha2": "NO",
"city": "Calebborough",
"address": "245 Lillian Greens",
"latitude": -31.487216,
"longitude": -99.289098,
"starRating": 3,
"rating": 3.5,
"ratingCount": 2429,
"priceFromPerNight": 740.86,
"currency": "AUD",
"amenities": [
"wifi",
"laundry"
],
"createdAt": "2024-07-18T15:21:20.912Z"
}