Respectful Suites West Dortha
hotel · West Dortha · $978.35+/night · ★ 4.5 (298)
5471 Lynn Hills
poolspalaundry
hotels / #128
hotel · West Dortha · $978.35+/night · ★ 4.5 (298)
5471 Lynn Hills
curl -sS \
"https://example-data.com/api/v1/hotels/128" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/128"
);
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/128"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/128"
)
hotel = res.json() {
"id": 128,
"name": "Respectful Suites West Dortha",
"slug": "respectful-suites-west-dortha-128",
"brand": "Four Seasons",
"countryAlpha2": "KR",
"city": "West Dortha",
"address": "5471 Lynn Hills",
"latitude": -48.697127,
"longitude": 38.090254,
"starRating": 2,
"rating": 4.5,
"ratingCount": 298,
"priceFromPerNight": 978.35,
"currency": "USD",
"amenities": [
"pool",
"spa",
"laundry"
],
"createdAt": "2025-04-27T05:00:19.885Z"
}