example-data.com

hotels / #52

Chubby Lodge Rempelview

hotel · Rempelview · $1911.81+/night · ★ 4.4 (4898)

784 Gerlach Keys

conciergegymbeach-accesslaundryspa

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/52"
)
hotel = res.json()
{
  "id": 52,
  "name": "Chubby Lodge Rempelview",
  "slug": "chubby-lodge-rempelview-52",
  "brand": "Best Western",
  "countryAlpha2": "FJ",
  "city": "Rempelview",
  "address": "784 Gerlach Keys",
  "latitude": 46.345558,
  "longitude": -73.39628,
  "starRating": 4,
  "rating": 4.4,
  "ratingCount": 4898,
  "priceFromPerNight": 1911.81,
  "currency": "CAD",
  "amenities": [
    "concierge",
    "gym",
    "beach-access",
    "laundry",
    "spa"
  ],
  "createdAt": "2024-09-01T18:25:23.669Z"
}
Draftbit