example-data.com
Menu
Browse docs and collections

Overview

hotels / #70

Liquid Palace West Jocelynside

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

269 Swaniawski Point

airport-shuttleparkinglaundryconciergewifibarcasino

Component variants

Related

Referenced by

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/hotels/70" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/hotels/70"
);
const hotel = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";

const res = await fetch(
  "https://example-data.com/api/v1/hotels/70"
);
const hotel = (await res.json()) as Hotel;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/70"
)
hotel = res.json()

Response

{
  "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"
}