Gray Resort Isomworth
hotel · Isomworth · $868.89+/night · ★ 4.0 (1592)
37319 School Close
parkingbar
hotels / #65
hotel · Isomworth · $868.89+/night · ★ 4.0 (1592)
37319 School Close
curl -sS \
"https://example-data.com/api/v1/hotels/65" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/65"
);
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/65"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/65"
)
hotel = res.json() {
"id": 65,
"name": "Gray Resort Isomworth",
"slug": "gray-resort-isomworth-65",
"brand": "Ritz-Carlton",
"countryAlpha2": "SA",
"city": "Isomworth",
"address": "37319 School Close",
"latitude": -38.219519,
"longitude": -18.284942,
"starRating": 5,
"rating": 4,
"ratingCount": 1592,
"priceFromPerNight": 868.89,
"currency": "THB",
"amenities": [
"parking",
"bar"
],
"createdAt": "2026-04-19T17:46:49.955Z"
}