Sociable Suites East Ashlyview
hotel · East Ashlyview · $1704.06+/night · ★ 3.1 (4362)
6338 Cedar Grove
pet-friendlygymbarconcierge
hotels / #72
hotel · East Ashlyview · $1704.06+/night · ★ 3.1 (4362)
6338 Cedar Grove
curl -sS \
"https://example-data.com/api/v1/hotels/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/72"
);
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/72"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/72"
)
hotel = res.json() {
"id": 72,
"name": "Sociable Suites East Ashlyview",
"slug": "sociable-suites-east-ashlyview-72",
"brand": "Hyatt",
"countryAlpha2": "AE",
"city": "East Ashlyview",
"address": "6338 Cedar Grove",
"latitude": -21.043354,
"longitude": -149.998992,
"starRating": 2,
"rating": 3.1,
"ratingCount": 4362,
"priceFromPerNight": 1704.06,
"currency": "THB",
"amenities": [
"pet-friendly",
"gym",
"bar",
"concierge"
],
"createdAt": "2025-05-22T07:13:38.825Z"
}