example-data.com

hotels / #122

Surprised Palace Port Karenchester

hotel · Port Karenchester · $779.43+/night · ★ 4.5 (4319)

5749 Barn Close

room-servicecasino

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/122"
)
hotel = res.json()
{
  "id": 122,
  "name": "Surprised Palace Port Karenchester",
  "slug": "surprised-palace-port-karenchester-122",
  "brand": "Accor",
  "countryAlpha2": "AR",
  "city": "Port Karenchester",
  "address": "5749 Barn Close",
  "latitude": -21.166604,
  "longitude": -3.954863,
  "starRating": 4,
  "rating": 4.5,
  "ratingCount": 4319,
  "priceFromPerNight": 779.43,
  "currency": "USD",
  "amenities": [
    "room-service",
    "casino"
  ],
  "createdAt": "2025-04-12T19:34:52.844Z"
}
Draftbit