example-data.com
Menu
Browse docs and collections

Overview

hotels / #116

Marvelous Resort Bartellberg

hotel · Bartellberg · $846.15+/night · ★ 3.7 (2228)

7239 Meadow Drive

restaurantlaundryspabarroom-servicepet-friendlybusiness-center

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/hotels/116" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/hotels/116"
);
const hotel = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";

const res = await fetch(
  "https://example-data.com/api/v1/hotels/116"
);
const hotel = (await res.json()) as Hotel;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/116"
)
hotel = res.json()

Response

{
  "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"
}