example-data.com

hotels / #98

Grumpy Resort Riverview

hotel · Riverview · $121.19+/night · ★ 4.3 (3681)

9772 Rosendo Canyon

beach-accessconciergerestaurant

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/98"
)
hotel = res.json()
{
  "id": 98,
  "name": "Grumpy Resort Riverview",
  "slug": "grumpy-resort-riverview-98",
  "brand": "Best Western",
  "countryAlpha2": "FR",
  "city": "Riverview",
  "address": "9772 Rosendo Canyon",
  "latitude": -31.514637,
  "longitude": -164.811126,
  "starRating": 3,
  "rating": 4.3,
  "ratingCount": 3681,
  "priceFromPerNight": 121.19,
  "currency": "SGD",
  "amenities": [
    "beach-access",
    "concierge",
    "restaurant"
  ],
  "createdAt": "2024-06-05T03:26:08.548Z"
}
Draftbit