example-data.com

hotels / #81

Complete Inn Ryleighberg

hotel · Ryleighberg · $1067.02+/night · ★ 4.5 (4184)

810 W Washington Street

laundrypool

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/81"
)
hotel = res.json()
{
  "id": 81,
  "name": "Complete Inn Ryleighberg",
  "slug": "complete-inn-ryleighberg-81",
  "brand": "Radisson",
  "countryAlpha2": "PE",
  "city": "Ryleighberg",
  "address": "810 W Washington Street",
  "latitude": 2.694468,
  "longitude": 38.79012,
  "starRating": 4,
  "rating": 4.5,
  "ratingCount": 4184,
  "priceFromPerNight": 1067.02,
  "currency": "TRY",
  "amenities": [
    "laundry",
    "pool"
  ],
  "createdAt": "2025-01-13T14:20:50.040Z"
}
Draftbit