Gracious Resort Novi
hotel · Novi · $856.83+/night · ★ 3.9 (680)
8174 Ena Junction
parkingconciergepet-friendly
hotels / #119
hotel · Novi · $856.83+/night · ★ 3.9 (680)
8174 Ena Junction
curl -sS \
"https://example-data.com/api/v1/hotels/119" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/119"
);
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/119"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/119"
)
hotel = res.json() {
"id": 119,
"name": "Gracious Resort Novi",
"slug": "gracious-resort-novi-119",
"brand": null,
"countryAlpha2": "FI",
"city": "Novi",
"address": "8174 Ena Junction",
"latitude": -20.934639,
"longitude": 101.350292,
"starRating": 2,
"rating": 3.9,
"ratingCount": 680,
"priceFromPerNight": 856.83,
"currency": "THB",
"amenities": [
"parking",
"concierge",
"pet-friendly"
],
"createdAt": "2024-12-29T20:36:22.137Z"
}