example-data.com

hotels / #79

Funny Resort Delfinacester

hotel · Delfinacester · $667.04+/night · ★ 3.8 (4035)

10024 Jefferson Street

airport-shuttlebusiness-centerwifibarrestaurantcasino

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/79"
)
hotel = res.json()
{
  "id": 79,
  "name": "Funny Resort Delfinacester",
  "slug": "funny-resort-delfinacester-79",
  "brand": "Hyatt",
  "countryAlpha2": "JP",
  "city": "Delfinacester",
  "address": "10024 Jefferson Street",
  "latitude": -20.585012,
  "longitude": 105.934796,
  "starRating": 3,
  "rating": 3.8,
  "ratingCount": 4035,
  "priceFromPerNight": 667.04,
  "currency": "THB",
  "amenities": [
    "airport-shuttle",
    "business-center",
    "wifi",
    "bar",
    "restaurant",
    "casino"
  ],
  "createdAt": "2025-06-18T19:27:37.932Z"
}
Draftbit