example-data.com
Menu
Browse docs and collections

Overview

hotels / #23

Stormy Suites East Hillard

hotel · East Hillard · $119.84+/night · ★ 3.5 (3770)

46377 Mohr Run

conciergeparkingbeach-accessroom-servicecasinoairport-shuttle

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 23,
  "name": "Stormy Suites East Hillard",
  "slug": "stormy-suites-east-hillard-23",
  "brand": "Wyndham",
  "countryAlpha2": "DK",
  "city": "East Hillard",
  "address": "46377 Mohr Run",
  "latitude": -10.447026,
  "longitude": 112.884978,
  "starRating": 2,
  "rating": 3.5,
  "ratingCount": 3770,
  "priceFromPerNight": 119.84,
  "currency": "TRY",
  "amenities": [
    "concierge",
    "parking",
    "beach-access",
    "room-service",
    "casino",
    "airport-shuttle"
  ],
  "createdAt": "2025-06-05T11:21:05.026Z"
}