Impressive Inn Kohlercester
hotel · Kohlercester · $1119.16+/night · ★ 4.8 (4400)
86858 Ashlee Gardens
poolroom-service
hotels / #6
hotel · Kohlercester · $1119.16+/night · ★ 4.8 (4400)
86858 Ashlee Gardens
curl -sS \
"https://example-data.com/api/v1/hotels/6" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/6"
);
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/6"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/6"
)
hotel = res.json() {
"id": 6,
"name": "Impressive Inn Kohlercester",
"slug": "impressive-inn-kohlercester-6",
"brand": null,
"countryAlpha2": "PL",
"city": "Kohlercester",
"address": "86858 Ashlee Gardens",
"latitude": 59.14131,
"longitude": 17.618008,
"starRating": 4,
"rating": 4.8,
"ratingCount": 4400,
"priceFromPerNight": 1119.16,
"currency": "AED",
"amenities": [
"pool",
"room-service"
],
"createdAt": "2024-10-19T21:13:16.858Z"
}