Known Lodge Samsonstad
hotel · Samsonstad · $44.84+/night · ★ 4.5 (2859)
908 Jaqueline Crescent
casinopoolbusiness-centerroom-serviceconciergelaundryrestaurant
hotels / #21
hotel · Samsonstad · $44.84+/night · ★ 4.5 (2859)
908 Jaqueline Crescent
curl -sS \
"https://example-data.com/api/v1/hotels/21" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/21"
);
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/21"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/21"
)
hotel = res.json() {
"id": 21,
"name": "Known Lodge Samsonstad",
"slug": "known-lodge-samsonstad-21",
"brand": null,
"countryAlpha2": "SE",
"city": "Samsonstad",
"address": "908 Jaqueline Crescent",
"latitude": 9.758352,
"longitude": -161.275629,
"starRating": 2,
"rating": 4.5,
"ratingCount": 2859,
"priceFromPerNight": 44.84,
"currency": "JPY",
"amenities": [
"casino",
"pool",
"business-center",
"room-service",
"concierge",
"laundry",
"restaurant"
],
"createdAt": "2025-12-20T14:06:36.850Z"
}