Untried Palace Tempe
hotel · Tempe · $1221.87+/night · ★ 2.5 (2674)
10136 Breitenberg Flats
beach-accessgym
hotels / #102
hotel · Tempe · $1221.87+/night · ★ 2.5 (2674)
10136 Breitenberg Flats
curl -sS \
"https://example-data.com/api/v1/hotels/102" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/102"
);
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/102"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/102"
)
hotel = res.json() {
"id": 102,
"name": "Untried Palace Tempe",
"slug": "untried-palace-tempe-102",
"brand": "Ritz-Carlton",
"countryAlpha2": "CL",
"city": "Tempe",
"address": "10136 Breitenberg Flats",
"latitude": -14.287926,
"longitude": 138.3891,
"starRating": 3,
"rating": 2.5,
"ratingCount": 2674,
"priceFromPerNight": 1221.87,
"currency": "AED",
"amenities": [
"beach-access",
"gym"
],
"createdAt": "2025-09-28T09:17:02.687Z"
}