example-data.com

hotels / #145

Frugal Inn Kellenfort

hotel · Kellenfort · $794.44+/night · ★ 4.1 (797)

1227 Emmy Points

poolwifirestaurantbeach-accessroom-service

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/145" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/145"
);
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/145"
);
const hotel = (await res.json()) as Hotel;
import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/145"
)
hotel = res.json()
{
  "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"
}
Draftbit