Polite Suites Cummingscester
hotel · Cummingscester · $1283.81+/night · ★ 2.5 (3618)
8255 Baron Burgs
barcasinolaundrybeach-access
Overview
hotels / #90
hotel · Cummingscester · $1283.81+/night · ★ 2.5 (3618)
8255 Baron Burgs
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/90" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/90" ); 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/90"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/90"
)
hotel = res.json() Response
{
"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"
}