Wavy Palace New Adolphfort
hotel · New Adolphfort · $1483.63+/night · ★ 2.8 (173)
1812 Arlo Junctions
airport-shuttlespa
hotels / #14
hotel · New Adolphfort · $1483.63+/night · ★ 2.8 (173)
1812 Arlo Junctions
curl -sS \
"https://example-data.com/api/v1/hotels/14" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/14"
);
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/14"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/14"
)
hotel = res.json() {
"id": 14,
"name": "Wavy Palace New Adolphfort",
"slug": "wavy-palace-new-adolphfort-14",
"brand": null,
"countryAlpha2": "FR",
"city": "New Adolphfort",
"address": "1812 Arlo Junctions",
"latitude": 26.898991,
"longitude": -34.752392,
"starRating": 2,
"rating": 2.8,
"ratingCount": 173,
"priceFromPerNight": 1483.63,
"currency": "GBP",
"amenities": [
"airport-shuttle",
"spa"
],
"createdAt": "2024-09-04T12:54:38.455Z"
}