example-data.com

hotels / #57

Surprised Lodge Lake Merl

hotel · Lake Merl · $1759.6+/night · ★ 2.2 (4448)

4734 Tower Road

wifipoollaundry

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/57"
)
hotel = res.json()
{
  "id": 57,
  "name": "Surprised Lodge Lake Merl",
  "slug": "surprised-lodge-lake-merl-57",
  "brand": null,
  "countryAlpha2": "IS",
  "city": "Lake Merl",
  "address": "4734 Tower Road",
  "latitude": -8.083195,
  "longitude": 169.956995,
  "starRating": 5,
  "rating": 2.2,
  "ratingCount": 4448,
  "priceFromPerNight": 1759.6,
  "currency": "JPY",
  "amenities": [
    "wifi",
    "pool",
    "laundry"
  ],
  "createdAt": "2025-03-03T08:30:51.484Z"
}
Draftbit