Impressive Inn Kohlercester
hotel · Kohlercester · $1119.16+/night · ★ 4.8 (4400)
86858 Ashlee Gardens
poolroom-service
Overview
hotels / #6
hotel · Kohlercester · $1119.16+/night · ★ 4.8 (4400)
86858 Ashlee Gardens
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/6" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/6" ); 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/6"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/6"
)
hotel = res.json() Response
{
"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"
}