Dearest Hotel East Nicolefurt
hotel · East Nicolefurt · $1618.71+/night · ★ 3.5 (1363)
646 Napoleon Hills
restaurantconcierge
hotels / #134
hotel · East Nicolefurt · $1618.71+/night · ★ 3.5 (1363)
646 Napoleon Hills
curl -sS \
"https://example-data.com/api/v1/hotels/134" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/134"
);
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/134"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/134"
)
hotel = res.json() {
"id": 134,
"name": "Dearest Hotel East Nicolefurt",
"slug": "dearest-hotel-east-nicolefurt-134",
"brand": null,
"countryAlpha2": "CO",
"city": "East Nicolefurt",
"address": "646 Napoleon Hills",
"latitude": 16.158971,
"longitude": -32.579874,
"starRating": 2,
"rating": 3.5,
"ratingCount": 1363,
"priceFromPerNight": 1618.71,
"currency": "EUR",
"amenities": [
"restaurant",
"concierge"
],
"createdAt": "2025-01-31T20:26:07.459Z"
}