Frugal Inn Kellenfort
hotel · Kellenfort · $794.44+/night · ★ 4.1 (797)
1227 Emmy Points
poolwifirestaurantbeach-accessroom-service
Overview
hotels / #145
hotel · Kellenfort · $794.44+/night · ★ 4.1 (797)
1227 Emmy Points
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/145" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/145" ); 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/145"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/145"
)
hotel = res.json() Response
{
"id": 145,
"name": "Frugal Inn Kellenfort",
"slug": "frugal-inn-kellenfort-145",
"brand": "Wyndham",
"countryAlpha2": "VN",
"city": "Kellenfort",
"address": "1227 Emmy Points",
"latitude": -4.465063,
"longitude": 104.022527,
"starRating": 4,
"rating": 4.1,
"ratingCount": 797,
"priceFromPerNight": 794.44,
"currency": "SGD",
"amenities": [
"pool",
"wifi",
"restaurant",
"beach-access",
"room-service"
],
"createdAt": "2024-08-08T06:31:59.856Z"
}