Chubby Lodge Rempelview
hotel · Rempelview · $1911.81+/night · ★ 4.4 (4898)
784 Gerlach Keys
conciergegymbeach-accesslaundryspa
Overview
hotels / #52
hotel · Rempelview · $1911.81+/night · ★ 4.4 (4898)
784 Gerlach Keys
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/52" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/52" ); 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/52"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/52"
)
hotel = res.json() Response
{
"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"
}