Polite Suites Cummingscester
hotel · Cummingscester · $1283.81+/night · ★ 2.5 (3618)
8255 Baron Burgs
barcasinolaundrybeach-access
hotels / #90
hotel · Cummingscester · $1283.81+/night · ★ 2.5 (3618)
8255 Baron Burgs
curl -sS \
"https://example-data.com/api/v1/hotels/90" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/90"
);
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/90"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/90"
)
hotel = res.json() {
"id": 90,
"name": "Polite Suites Cummingscester",
"slug": "polite-suites-cummingscester-90",
"brand": "Radisson",
"countryAlpha2": "TH",
"city": "Cummingscester",
"address": "8255 Baron Burgs",
"latitude": 9.053857,
"longitude": 102.487352,
"starRating": 5,
"rating": 2.5,
"ratingCount": 3618,
"priceFromPerNight": 1283.81,
"currency": "AED",
"amenities": [
"bar",
"casino",
"laundry",
"beach-access"
],
"createdAt": "2024-08-08T08:10:19.149Z"
}