Pleasant Lodge North Hailiefurt
hotel · North Hailiefurt · $891.77+/night · ★ 3.1 (50)
915 Pfannerstill Throughway
airport-shuttleconciergegymcasinoparkingbeach-accessbarwifi
hotels / #17
hotel · North Hailiefurt · $891.77+/night · ★ 3.1 (50)
915 Pfannerstill Throughway
curl -sS \
"https://example-data.com/api/v1/hotels/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/17"
);
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/17"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/17"
)
hotel = res.json() {
"id": 17,
"name": "Pleasant Lodge North Hailiefurt",
"slug": "pleasant-lodge-north-hailiefurt-17",
"brand": null,
"countryAlpha2": "AT",
"city": "North Hailiefurt",
"address": "915 Pfannerstill Throughway",
"latitude": -28.510526,
"longitude": 68.434404,
"starRating": 2,
"rating": 3.1,
"ratingCount": 50,
"priceFromPerNight": 891.77,
"currency": "THB",
"amenities": [
"airport-shuttle",
"concierge",
"gym",
"casino",
"parking",
"beach-access",
"bar",
"wifi"
],
"createdAt": "2025-10-31T07:23:50.022Z"
}