Outlandish Resort East Savanahview
hotel · East Savanahview · $526.98+/night · ★ 3.8 (2653)
760 The Sidings
parkinglaundrybarrestaurant
Overview
hotels / #19
hotel · East Savanahview · $526.98+/night · ★ 3.8 (2653)
760 The Sidings
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/19" ); 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/19"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/19"
)
hotel = res.json() Response
{
"id": 19,
"name": "Outlandish Resort East Savanahview",
"slug": "outlandish-resort-east-savanahview-19",
"brand": "Best Western",
"countryAlpha2": "SA",
"city": "East Savanahview",
"address": "760 The Sidings",
"latitude": 58.41847,
"longitude": -165.297819,
"starRating": 3,
"rating": 3.8,
"ratingCount": 2653,
"priceFromPerNight": 526.98,
"currency": "CAD",
"amenities": [
"parking",
"laundry",
"bar",
"restaurant"
],
"createdAt": "2024-06-13T14:35:33.366Z"
}