Respectful Suites West Dortha
hotel · West Dortha · $978.35+/night · ★ 4.5 (298)
5471 Lynn Hills
poolspalaundry
Overview
hotels / #128
hotel · West Dortha · $978.35+/night · ★ 4.5 (298)
5471 Lynn Hills
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/128" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/128" ); 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/128"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/128"
)
hotel = res.json() Response
{
"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"
}