Soft Hotel Gerlachmouth
hotel · Gerlachmouth · $1861.47+/night · ★ 3.8 (557)
3194 River Road
conciergewifibarlaundry
hotels / #96
hotel · Gerlachmouth · $1861.47+/night · ★ 3.8 (557)
3194 River Road
curl -sS \
"https://example-data.com/api/v1/hotels/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/96"
);
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/96"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/96"
)
hotel = res.json() {
"id": 96,
"name": "Soft Hotel Gerlachmouth",
"slug": "soft-hotel-gerlachmouth-96",
"brand": "Hilton",
"countryAlpha2": "MA",
"city": "Gerlachmouth",
"address": "3194 River Road",
"latitude": -0.09792,
"longitude": 33.114209,
"starRating": 3,
"rating": 3.8,
"ratingCount": 557,
"priceFromPerNight": 1861.47,
"currency": "JPY",
"amenities": [
"concierge",
"wifi",
"bar",
"laundry"
],
"createdAt": "2026-03-10T20:43:14.320Z"
}