example-data.com

hotels / #112

Unripe Palace Moenshire

hotel · Moenshire · $1973.33+/night · ★ 3.5 (3602)

7196 Carter Fall

restaurantbar

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/112"
)
hotel = res.json()
{
  "id": 112,
  "name": "Unripe Palace Moenshire",
  "slug": "unripe-palace-moenshire-112",
  "brand": null,
  "countryAlpha2": "DK",
  "city": "Moenshire",
  "address": "7196 Carter Fall",
  "latitude": 33.566458,
  "longitude": 109.110809,
  "starRating": 3,
  "rating": 3.5,
  "ratingCount": 3602,
  "priceFromPerNight": 1973.33,
  "currency": "THB",
  "amenities": [
    "restaurant",
    "bar"
  ],
  "createdAt": "2024-08-20T06:53:46.568Z"
}
Draftbit