example-data.com

hotels / #127

Talkative Inn Balistreriworth

hotel · Balistreriworth · $774.04+/night · ★ 2.1 (4397)

694 Abernathy Rue

wifirestaurantsparoom-servicepet-friendlypoollaundry

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/127"
)
hotel = res.json()
{
  "id": 127,
  "name": "Talkative Inn Balistreriworth",
  "slug": "talkative-inn-balistreriworth-127",
  "brand": "Best Western",
  "countryAlpha2": "EG",
  "city": "Balistreriworth",
  "address": "694 Abernathy Rue",
  "latitude": 25.403155,
  "longitude": 4.708624,
  "starRating": 5,
  "rating": 2.1,
  "ratingCount": 4397,
  "priceFromPerNight": 774.04,
  "currency": "TRY",
  "amenities": [
    "wifi",
    "restaurant",
    "spa",
    "room-service",
    "pet-friendly",
    "pool",
    "laundry"
  ],
  "createdAt": "2026-01-05T06:02:16.865Z"
}
Draftbit