example-data.com

hotels / #137

Complicated Hotel Susiechester

hotel · Susiechester · $1862.84+/night · ★ 4.7 (1514)

77130 Cruz Vista

beach-accesslaundrygym

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/137"
)
hotel = res.json()
{
  "id": 137,
  "name": "Complicated Hotel Susiechester",
  "slug": "complicated-hotel-susiechester-137",
  "brand": "Wyndham",
  "countryAlpha2": "KE",
  "city": "Susiechester",
  "address": "77130 Cruz Vista",
  "latitude": 14.737216,
  "longitude": -173.460907,
  "starRating": 2,
  "rating": 4.7,
  "ratingCount": 1514,
  "priceFromPerNight": 1862.84,
  "currency": "THB",
  "amenities": [
    "beach-access",
    "laundry",
    "gym"
  ],
  "createdAt": "2024-06-15T15:19:11.757Z"
}
Draftbit