Quarterly Inn Fort Pansyfurt
hotel · Fort Pansyfurt · $90.25+/night · ★ 2.1 (2479)
53561 Sycamore Close
conciergepoolparkingroom-servicegymbusiness-center
hotels / #43
hotel · Fort Pansyfurt · $90.25+/night · ★ 2.1 (2479)
53561 Sycamore Close
curl -sS \
"https://example-data.com/api/v1/hotels/43" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/43"
);
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/43"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/43"
)
hotel = res.json() {
"id": 43,
"name": "Quarterly Inn Fort Pansyfurt",
"slug": "quarterly-inn-fort-pansyfurt-43",
"brand": null,
"countryAlpha2": "NO",
"city": "Fort Pansyfurt",
"address": "53561 Sycamore Close",
"latitude": 54.423634,
"longitude": -87.219756,
"starRating": 5,
"rating": 2.1,
"ratingCount": 2479,
"priceFromPerNight": 90.25,
"currency": "JPY",
"amenities": [
"concierge",
"pool",
"parking",
"room-service",
"gym",
"business-center"
],
"createdAt": "2026-02-26T09:28:37.327Z"
}