example-data.com

hotels / #71

Lazy Suites South Zella

hotel · South Zella · $1234.93+/night · ★ 3.2 (2348)

739 Mill Road

room-servicegymparkingpet-friendlyspalaundryconcierge

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/71"
)
hotel = res.json()
{
  "id": 71,
  "name": "Lazy Suites South Zella",
  "slug": "lazy-suites-south-zella-71",
  "brand": "Hyatt",
  "countryAlpha2": "MA",
  "city": "South Zella",
  "address": "739 Mill Road",
  "latitude": 23.4257,
  "longitude": 0.874949,
  "starRating": 2,
  "rating": 3.2,
  "ratingCount": 2348,
  "priceFromPerNight": 1234.93,
  "currency": "SGD",
  "amenities": [
    "room-service",
    "gym",
    "parking",
    "pet-friendly",
    "spa",
    "laundry",
    "concierge"
  ],
  "createdAt": "2025-06-17T06:50:18.898Z"
}
Draftbit