Tired Lodge New Flavioport
hotel · New Flavioport · $729.04+/night · ★ 2.9 (3183)
9730 Beech Close
laundrybeach-accesspet-friendlyparkingairport-shuttle
hotels / #31
hotel · New Flavioport · $729.04+/night · ★ 2.9 (3183)
9730 Beech Close
curl -sS \
"https://example-data.com/api/v1/hotels/31" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/31"
);
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/31"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/31"
)
hotel = res.json() {
"id": 31,
"name": "Tired Lodge New Flavioport",
"slug": "tired-lodge-new-flavioport-31",
"brand": null,
"countryAlpha2": "BE",
"city": "New Flavioport",
"address": "9730 Beech Close",
"latitude": 37.017902,
"longitude": -109.507991,
"starRating": 4,
"rating": 2.9,
"ratingCount": 3183,
"priceFromPerNight": 729.04,
"currency": "AUD",
"amenities": [
"laundry",
"beach-access",
"pet-friendly",
"parking",
"airport-shuttle"
],
"createdAt": "2025-08-16T10:01:50.069Z"
}