example-data.com

hotels / #15

Neighboring Resort Bergstromborough

hotel · Bergstromborough · $1649.38+/night · ★ 2.5 (1767)

4082 Sonny Court

laundryspawifibarcasinobusiness-center

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/15"
)
hotel = res.json()
{
  "id": 15,
  "name": "Neighboring Resort Bergstromborough",
  "slug": "neighboring-resort-bergstromborough-15",
  "brand": "Ritz-Carlton",
  "countryAlpha2": "AU",
  "city": "Bergstromborough",
  "address": "4082 Sonny Court",
  "latitude": 26.729526,
  "longitude": -135.489423,
  "starRating": 2,
  "rating": 2.5,
  "ratingCount": 1767,
  "priceFromPerNight": 1649.38,
  "currency": "USD",
  "amenities": [
    "laundry",
    "spa",
    "wifi",
    "bar",
    "casino",
    "business-center"
  ],
  "createdAt": "2025-10-08T01:52:24.922Z"
}
Draftbit