example-data.com

hotels / #61

Hard-to-find Hotel South Eldoraton

hotel · South Eldoraton · $752.92+/night · ★ 2.4 (4291)

84814 The Green

parkingroom-servicebeach-accessconciergerestaurant

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/61"
)
hotel = res.json()
{
  "id": 61,
  "name": "Hard-to-find Hotel South Eldoraton",
  "slug": "hard-to-find-hotel-south-eldoraton-61",
  "brand": null,
  "countryAlpha2": "BE",
  "city": "South Eldoraton",
  "address": "84814 The Green",
  "latitude": -17.905403,
  "longitude": -137.084764,
  "starRating": 2,
  "rating": 2.4,
  "ratingCount": 4291,
  "priceFromPerNight": 752.92,
  "currency": "USD",
  "amenities": [
    "parking",
    "room-service",
    "beach-access",
    "concierge",
    "restaurant"
  ],
  "createdAt": "2025-09-19T19:30:12.991Z"
}
Draftbit