example-data.com

hotels / #147

Antique Inn Carolina

hotel · Carolina · $886.78+/night · ★ 4.5 (268)

839 Alaina Lights

restaurantpet-friendlycasinospabarparkingairport-shuttle

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/147"
)
hotel = res.json()
{
  "id": 147,
  "name": "Antique Inn Carolina",
  "slug": "antique-inn-carolina-147",
  "brand": null,
  "countryAlpha2": "FJ",
  "city": "Carolina",
  "address": "839 Alaina Lights",
  "latitude": -45.329576,
  "longitude": -46.650433,
  "starRating": 2,
  "rating": 4.5,
  "ratingCount": 268,
  "priceFromPerNight": 886.78,
  "currency": "AUD",
  "amenities": [
    "restaurant",
    "pet-friendly",
    "casino",
    "spa",
    "bar",
    "parking",
    "airport-shuttle"
  ],
  "createdAt": "2025-03-13T20:45:05.147Z"
}
Draftbit