example-data.com

hotels / #7

Ironclad Hotel Handside

hotel · Handside · $594.53+/night · ★ 4.3 (3132)

7693 Britney Curve

spawifiairport-shuttle

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/7"
)
hotel = res.json()
{
  "id": 7,
  "name": "Ironclad Hotel Handside",
  "slug": "ironclad-hotel-handside-7",
  "brand": "Radisson",
  "countryAlpha2": "FJ",
  "city": "Handside",
  "address": "7693 Britney Curve",
  "latitude": -26.013203,
  "longitude": -39.305577,
  "starRating": 2,
  "rating": 4.3,
  "ratingCount": 3132,
  "priceFromPerNight": 594.53,
  "currency": "EUR",
  "amenities": [
    "spa",
    "wifi",
    "airport-shuttle"
  ],
  "createdAt": "2025-05-15T08:00:51.872Z"
}
Draftbit