example-data.com
Menu
Browse docs and collections

Overview

hotels / #75

Honorable Palace Zemlakchester

hotel · Zemlakchester · $1826.22+/night · ★ 3.5 (2914)

4375 Kunde Tunnel

poolwifigymbarspalaundry

Component variants

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 75,
  "name": "Honorable Palace Zemlakchester",
  "slug": "honorable-palace-zemlakchester-75",
  "brand": "IHG",
  "countryAlpha2": "AE",
  "city": "Zemlakchester",
  "address": "4375 Kunde Tunnel",
  "latitude": -31.692073,
  "longitude": 121.435604,
  "starRating": 2,
  "rating": 3.5,
  "ratingCount": 2914,
  "priceFromPerNight": 1826.22,
  "currency": "EUR",
  "amenities": [
    "pool",
    "wifi",
    "gym",
    "bar",
    "spa",
    "laundry"
  ],
  "createdAt": "2024-09-11T18:54:53.893Z"
}