example-data.com

hotels / #146

Present Suites Highland

hotel · Highland · $1080.56+/night · ★ 4.8 (4433)

204 Missouri Wall

room-servicepoolspalaundry

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/146"
)
hotel = res.json()
{
  "id": 146,
  "name": "Present Suites Highland",
  "slug": "present-suites-highland-146",
  "brand": "Best Western",
  "countryAlpha2": "KE",
  "city": "Highland",
  "address": "204 Missouri Wall",
  "latitude": 52.230575,
  "longitude": 148.275651,
  "starRating": 2,
  "rating": 4.8,
  "ratingCount": 4433,
  "priceFromPerNight": 1080.56,
  "currency": "GBP",
  "amenities": [
    "room-service",
    "pool",
    "spa",
    "laundry"
  ],
  "createdAt": "2026-04-06T04:20:15.736Z"
}
Draftbit