Unpleasant Suites South Kenton
hotel · South Kenton · $859.47+/night · ★ 2.4 (2688)
4866 Collier Mountains
laundrypet-friendlybusiness-centerwifiparkingbeach-access
hotels / #16
hotel · South Kenton · $859.47+/night · ★ 2.4 (2688)
4866 Collier Mountains
curl -sS \
"https://example-data.com/api/v1/hotels/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/16"
);
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/16"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/16"
)
hotel = res.json() {
"id": 16,
"name": "Unpleasant Suites South Kenton",
"slug": "unpleasant-suites-south-kenton-16",
"brand": "Best Western",
"countryAlpha2": "EG",
"city": "South Kenton",
"address": "4866 Collier Mountains",
"latitude": -6.054593,
"longitude": -145.095226,
"starRating": 3,
"rating": 2.4,
"ratingCount": 2688,
"priceFromPerNight": 859.47,
"currency": "SGD",
"amenities": [
"laundry",
"pet-friendly",
"business-center",
"wifi",
"parking",
"beach-access"
],
"createdAt": "2025-07-03T20:21:06.936Z"
}