example-data.com

hotels / #70

Liquid Palace West Jocelynside

hotel · West Jocelynside · $504.93+/night · ★ 2.5 (2484)

269 Swaniawski Point

airport-shuttleparkinglaundryconciergewifibarcasino

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/70"
)
hotel = res.json()
{
  "id": 70,
  "name": "Liquid Palace West Jocelynside",
  "slug": "liquid-palace-west-jocelynside-70",
  "brand": "Accor",
  "countryAlpha2": "GR",
  "city": "West Jocelynside",
  "address": "269 Swaniawski Point",
  "latitude": -6.441604,
  "longitude": -39.191379,
  "starRating": 4,
  "rating": 2.5,
  "ratingCount": 2484,
  "priceFromPerNight": 504.93,
  "currency": "CAD",
  "amenities": [
    "airport-shuttle",
    "parking",
    "laundry",
    "concierge",
    "wifi",
    "bar",
    "casino"
  ],
  "createdAt": "2026-03-25T12:38:42.252Z"
}
Draftbit