example-data.com

hotels / #26

Legal Resort Vonside

hotel · Vonside · $818.76+/night · ★ 3.3 (688)

6310 Robb Flat

laundrybusiness-center

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/26"
)
hotel = res.json()
{
  "id": 26,
  "name": "Legal Resort Vonside",
  "slug": "legal-resort-vonside-26",
  "brand": "Best Western",
  "countryAlpha2": "SE",
  "city": "Vonside",
  "address": "6310 Robb Flat",
  "latitude": 48.450745,
  "longitude": 7.056145,
  "starRating": 2,
  "rating": 3.3,
  "ratingCount": 688,
  "priceFromPerNight": 818.76,
  "currency": "AUD",
  "amenities": [
    "laundry",
    "business-center"
  ],
  "createdAt": "2024-06-22T21:54:20.293Z"
}
Draftbit