example-data.com

hotels / #105

Purple Lodge Lake Rosella

hotel · Lake Rosella · $190.3+/night · ★ 2.3 (2268)

8043 Larch Close

beach-accessparkingwifibarcasinogymspa

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/105"
)
hotel = res.json()
{
  "id": 105,
  "name": "Purple Lodge Lake Rosella",
  "slug": "purple-lodge-lake-rosella-105",
  "brand": "Accor",
  "countryAlpha2": "US",
  "city": "Lake Rosella",
  "address": "8043 Larch Close",
  "latitude": -3.527416,
  "longitude": 89.966518,
  "starRating": 3,
  "rating": 2.3,
  "ratingCount": 2268,
  "priceFromPerNight": 190.3,
  "currency": "THB",
  "amenities": [
    "beach-access",
    "parking",
    "wifi",
    "bar",
    "casino",
    "gym",
    "spa"
  ],
  "createdAt": "2025-07-29T11:44:38.879Z"
}
Draftbit