example-data.com

hotels / #107

Dense Hotel Simport

hotel · Simport · $115.88+/night · ★ 3.9 (431)

8145 Eveline Lakes

business-centerbarbeach-accesspet-friendlygymparking

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/107"
)
hotel = res.json()
{
  "id": 107,
  "name": "Dense Hotel Simport",
  "slug": "dense-hotel-simport-107",
  "brand": "Best Western",
  "countryAlpha2": "IS",
  "city": "Simport",
  "address": "8145 Eveline Lakes",
  "latitude": 6.981577,
  "longitude": -119.130269,
  "starRating": 5,
  "rating": 3.9,
  "ratingCount": 431,
  "priceFromPerNight": 115.88,
  "currency": "JPY",
  "amenities": [
    "business-center",
    "bar",
    "beach-access",
    "pet-friendly",
    "gym",
    "parking"
  ],
  "createdAt": "2025-07-15T22:31:17.634Z"
}
Draftbit