Physical Suites Kaseyville
hotel · Kaseyville · $729.38+/night · ★ 2.4 (110)
4755 Gavin Cliff
poolrestaurantbusiness-centerbeach-access
Overview
hotels / #25
hotel · Kaseyville · $729.38+/night · ★ 2.4 (110)
4755 Gavin Cliff
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/25" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/25" ); 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/25"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/25"
)
hotel = res.json() Response
{
"id": 25,
"name": "Physical Suites Kaseyville",
"slug": "physical-suites-kaseyville-25",
"brand": "Ritz-Carlton",
"countryAlpha2": "IN",
"city": "Kaseyville",
"address": "4755 Gavin Cliff",
"latitude": -2.103434,
"longitude": 2.464975,
"starRating": 4,
"rating": 2.4,
"ratingCount": 110,
"priceFromPerNight": 729.38,
"currency": "THB",
"amenities": [
"pool",
"restaurant",
"business-center",
"beach-access"
],
"createdAt": "2024-12-29T13:08:21.744Z"
}