Authorized Hotel Fort Jairo
hotel · Fort Jairo · $544.42+/night · ★ 5.0 (672)
28589 Talon Fields
airport-shuttleroom-serviceconcierge
hotels / #41
hotel · Fort Jairo · $544.42+/night · ★ 5.0 (672)
28589 Talon Fields
curl -sS \
"https://example-data.com/api/v1/hotels/41" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/41"
);
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/41"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/41"
)
hotel = res.json() {
"id": 41,
"name": "Authorized Hotel Fort Jairo",
"slug": "authorized-hotel-fort-jairo-41",
"brand": null,
"countryAlpha2": "IN",
"city": "Fort Jairo",
"address": "28589 Talon Fields",
"latitude": -34.549283,
"longitude": -163.750353,
"starRating": 3,
"rating": 5,
"ratingCount": 672,
"priceFromPerNight": 544.42,
"currency": "AUD",
"amenities": [
"airport-shuttle",
"room-service",
"concierge"
],
"createdAt": "2025-11-16T18:38:46.167Z"
}