example-data.com

hotels / #51

Immense Hotel Port Antwon

hotel · Port Antwon · $1854.66+/night · ★ 4.0 (1694)

181 Orchard Road

pet-friendlybusiness-centerwifipool

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/51"
)
hotel = res.json()
{
  "id": 51,
  "name": "Immense Hotel Port Antwon",
  "slug": "immense-hotel-port-antwon-51",
  "brand": "Wyndham",
  "countryAlpha2": "CL",
  "city": "Port Antwon",
  "address": "181 Orchard Road",
  "latitude": 41.047822,
  "longitude": -106.395747,
  "starRating": 2,
  "rating": 4,
  "ratingCount": 1694,
  "priceFromPerNight": 1854.66,
  "currency": "USD",
  "amenities": [
    "pet-friendly",
    "business-center",
    "wifi",
    "pool"
  ],
  "createdAt": "2024-10-15T09:03:13.404Z"
}
Draftbit