example-data.com

hotels / #101

Happy-go-lucky Suites Calebborough

hotel · Calebborough · $740.86+/night · ★ 3.5 (2429)

245 Lillian Greens

wifilaundry

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/101"
)
hotel = res.json()
{
  "id": 101,
  "name": "Happy-go-lucky Suites Calebborough",
  "slug": "happy-go-lucky-suites-calebborough-101",
  "brand": "Wyndham",
  "countryAlpha2": "NO",
  "city": "Calebborough",
  "address": "245 Lillian Greens",
  "latitude": -31.487216,
  "longitude": -99.289098,
  "starRating": 3,
  "rating": 3.5,
  "ratingCount": 2429,
  "priceFromPerNight": 740.86,
  "currency": "AUD",
  "amenities": [
    "wifi",
    "laundry"
  ],
  "createdAt": "2024-07-18T15:21:20.912Z"
}
Draftbit