example-data.com
Menu
Browse docs and collections

Overview

hotels / #56

Unlucky Resort New Makennachester

hotel · New Makennachester · $1376.37+/night · ★ 2.2 (1749)

96667 Julian Summit

conciergepet-friendlypoolcasinosparoom-servicelaundryparking

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 56,
  "name": "Unlucky Resort New Makennachester",
  "slug": "unlucky-resort-new-makennachester-56",
  "brand": "Hyatt",
  "countryAlpha2": "PE",
  "city": "New Makennachester",
  "address": "96667 Julian Summit",
  "latitude": -27.56175,
  "longitude": -140.678297,
  "starRating": 5,
  "rating": 2.2,
  "ratingCount": 1749,
  "priceFromPerNight": 1376.37,
  "currency": "EUR",
  "amenities": [
    "concierge",
    "pet-friendly",
    "pool",
    "casino",
    "spa",
    "room-service",
    "laundry",
    "parking"
  ],
  "createdAt": "2026-03-05T15:52:50.211Z"
}