Slimy Resort East Helmer
hotel · East Helmer · $1472.67+/night · ★ 2.4 (4187)
98962 Arthur Corners
casinobarlaundrywifiairport-shuttleparking
hotels / #62
hotel · East Helmer · $1472.67+/night · ★ 2.4 (4187)
98962 Arthur Corners
curl -sS \
"https://example-data.com/api/v1/hotels/62" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/62"
);
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/62"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/62"
)
hotel = res.json() {
"id": 62,
"name": "Slimy Resort East Helmer",
"slug": "slimy-resort-east-helmer-62",
"brand": "Hilton",
"countryAlpha2": "CA",
"city": "East Helmer",
"address": "98962 Arthur Corners",
"latitude": -26.218169,
"longitude": -163.134893,
"starRating": 2,
"rating": 2.4,
"ratingCount": 4187,
"priceFromPerNight": 1472.67,
"currency": "THB",
"amenities": [
"casino",
"bar",
"laundry",
"wifi",
"airport-shuttle",
"parking"
],
"createdAt": "2025-05-17T14:44:08.531Z"
}