example-data.com
Menu
Browse docs and collections

Overview

hotels / #71

Lazy Suites South Zella

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

739 Mill Road

room-servicegymparkingpet-friendlyspalaundryconcierge

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

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