Sociable Suites East Ashlyview
hotel · East Ashlyview · $1704.06+/night · ★ 3.1 (4362)
6338 Cedar Grove
pet-friendlygymbarconcierge
Overview
hotels / #72
hotel · East Ashlyview · $1704.06+/night · ★ 3.1 (4362)
6338 Cedar Grove
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/72" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/72" ); const hotel = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";
const res = await fetch(
"https://example-data.com/api/v1/hotels/72"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/72"
)
hotel = res.json() Response
{
"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"
}