example-data.com

hotels / #24

Fatal Palace Josiannetown

hotel · Josiannetown · $1336.09+/night · ★ 3.3 (4629)

9948 Gerlach Neck

casinobeach-accessgympool

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/24"
)
hotel = res.json()
{
  "id": 24,
  "name": "Fatal Palace Josiannetown",
  "slug": "fatal-palace-josiannetown-24",
  "brand": "Hilton",
  "countryAlpha2": "IS",
  "city": "Josiannetown",
  "address": "9948 Gerlach Neck",
  "latitude": -24.015892,
  "longitude": -55.27394,
  "starRating": 4,
  "rating": 3.3,
  "ratingCount": 4629,
  "priceFromPerNight": 1336.09,
  "currency": "GBP",
  "amenities": [
    "casino",
    "beach-access",
    "gym",
    "pool"
  ],
  "createdAt": "2024-06-19T03:32:04.455Z"
}
Draftbit