Pricey Inn Stammtown
hotel · Stammtown · $1643.79+/night · ★ 3.1 (4649)
81824 Dicki Cove
conciergecasinospabar
hotels / #139
hotel · Stammtown · $1643.79+/night · ★ 3.1 (4649)
81824 Dicki Cove
curl -sS \
"https://example-data.com/api/v1/hotels/139" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/139"
);
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/139"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/139"
)
hotel = res.json() {
"id": 139,
"name": "Pricey Inn Stammtown",
"slug": "pricey-inn-stammtown-139",
"brand": "Wyndham",
"countryAlpha2": "US",
"city": "Stammtown",
"address": "81824 Dicki Cove",
"latitude": 34.033587,
"longitude": -147.748902,
"starRating": 5,
"rating": 3.1,
"ratingCount": 4649,
"priceFromPerNight": 1643.79,
"currency": "AUD",
"amenities": [
"concierge",
"casino",
"spa",
"bar"
],
"createdAt": "2026-01-15T16:28:44.897Z"
}