example-data.com

hotels / #60

Wee Inn Valerieville

hotel · Valerieville · $1361.11+/night · ★ 2.3 (2409)

35643 Rohan River

casinobarwifirestaurantbeach-accessparkingpoolpet-friendly

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/60"
)
hotel = res.json()
{
  "id": 60,
  "name": "Wee Inn Valerieville",
  "slug": "wee-inn-valerieville-60",
  "brand": null,
  "countryAlpha2": "BR",
  "city": "Valerieville",
  "address": "35643 Rohan River",
  "latitude": -22.423612,
  "longitude": 67.643992,
  "starRating": 3,
  "rating": 2.3,
  "ratingCount": 2409,
  "priceFromPerNight": 1361.11,
  "currency": "EUR",
  "amenities": [
    "casino",
    "bar",
    "wifi",
    "restaurant",
    "beach-access",
    "parking",
    "pool",
    "pet-friendly"
  ],
  "createdAt": "2024-11-22T13:34:39.946Z"
}
Draftbit