Marvelous Resort Bartellberg
hotel · Bartellberg · $846.15+/night · ★ 3.7 (2228)
7239 Meadow Drive
restaurantlaundryspabarroom-servicepet-friendlybusiness-center
hotels / #116
hotel · Bartellberg · $846.15+/night · ★ 3.7 (2228)
7239 Meadow Drive
curl -sS \
"https://example-data.com/api/v1/hotels/116" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/116"
);
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/116"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/116"
)
hotel = res.json() {
"id": 116,
"name": "Marvelous Resort Bartellberg",
"slug": "marvelous-resort-bartellberg-116",
"brand": null,
"countryAlpha2": "PE",
"city": "Bartellberg",
"address": "7239 Meadow Drive",
"latitude": 34.089816,
"longitude": 158.844372,
"starRating": 3,
"rating": 3.7,
"ratingCount": 2228,
"priceFromPerNight": 846.15,
"currency": "AED",
"amenities": [
"restaurant",
"laundry",
"spa",
"bar",
"room-service",
"pet-friendly",
"business-center"
],
"createdAt": "2026-05-21T07:32:04.184Z"
}