Known Lodge Samsonstad
hotel · Samsonstad · $44.84+/night · ★ 4.5 (2859)
908 Jaqueline Crescent
casinopoolbusiness-centerroom-serviceconciergelaundryrestaurant
Overview
hotels / #21
hotel · Samsonstad · $44.84+/night · ★ 4.5 (2859)
908 Jaqueline Crescent
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/21" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/21" ); 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/21"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/21"
)
hotel = res.json() Response
{
"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"
}