Nutritious Resort Beryltown
hotel · Beryltown · $845.75+/night · ★ 4.3 (4940)
9938 Leonie Forges
barbusiness-center
hotels / #47
hotel · Beryltown · $845.75+/night · ★ 4.3 (4940)
9938 Leonie Forges
curl -sS \
"https://example-data.com/api/v1/hotels/47" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/47"
);
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/47"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/47"
)
hotel = res.json() {
"id": 47,
"name": "Nutritious Resort Beryltown",
"slug": "nutritious-resort-beryltown-47",
"brand": "Wyndham",
"countryAlpha2": "AT",
"city": "Beryltown",
"address": "9938 Leonie Forges",
"latitude": 52.340614,
"longitude": 131.485782,
"starRating": 3,
"rating": 4.3,
"ratingCount": 4940,
"priceFromPerNight": 845.75,
"currency": "AED",
"amenities": [
"bar",
"business-center"
],
"createdAt": "2026-05-19T14:03:12.574Z"
}