example-data.com

hotels / #19

Outlandish Resort East Savanahview

hotel · East Savanahview · $526.98+/night · ★ 3.8 (2653)

760 The Sidings

parkinglaundrybarrestaurant

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/19" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/19"
);
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/19"
);
const hotel = (await res.json()) as Hotel;
import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/19"
)
hotel = res.json()
{
  "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"
}
Draftbit