Wavy Palace New Adolphfort
hotel · New Adolphfort · $1483.63+/night · ★ 2.8 (173)
1812 Arlo Junctions
airport-shuttlespa
Overview
hotels / #14
hotel · New Adolphfort · $1483.63+/night · ★ 2.8 (173)
1812 Arlo Junctions
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/14" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/14" ); 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/14"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/14"
)
hotel = res.json() Response
{
"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"
}