Snarling Inn Fort Esmeraldafurt
hotel · Fort Esmeraldafurt · $1313.06+/night · ★ 2.5 (3102)
30273 Treva Spur
parkingwifi
Overview
hotels / #104
hotel · Fort Esmeraldafurt · $1313.06+/night · ★ 2.5 (3102)
30273 Treva Spur
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/104" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/104" ); 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/104"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/104"
)
hotel = res.json() Response
{
"id": 104,
"name": "Snarling Inn Fort Esmeraldafurt",
"slug": "snarling-inn-fort-esmeraldafurt-104",
"brand": "Marriott",
"countryAlpha2": "GB",
"city": "Fort Esmeraldafurt",
"address": "30273 Treva Spur",
"latitude": 17.632127,
"longitude": 166.514842,
"starRating": 2,
"rating": 2.5,
"ratingCount": 3102,
"priceFromPerNight": 1313.06,
"currency": "TRY",
"amenities": [
"parking",
"wifi"
],
"createdAt": "2024-12-31T23:29:37.002Z"
}