Quarterly Inn Fort Pansyfurt
hotel · Fort Pansyfurt · $90.25+/night · ★ 2.1 (2479)
53561 Sycamore Close
conciergepoolparkingroom-servicegymbusiness-center
Overview
hotels / #43
hotel · Fort Pansyfurt · $90.25+/night · ★ 2.1 (2479)
53561 Sycamore Close
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/43" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/43" ); 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/43"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/43"
)
hotel = res.json() Response
{
"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"
}