Imaginative Inn Aileenborough
hotel · Aileenborough · $1330.08+/night · ★ 4.2 (4293)
243 W Maple Street
pet-friendlyairport-shuttlecasino
hotels / #82
hotel · Aileenborough · $1330.08+/night · ★ 4.2 (4293)
243 W Maple Street
curl -sS \
"https://example-data.com/api/v1/hotels/82" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/82"
);
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/82"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/82"
)
hotel = res.json() {
"id": 82,
"name": "Imaginative Inn Aileenborough",
"slug": "imaginative-inn-aileenborough-82",
"brand": null,
"countryAlpha2": "ZA",
"city": "Aileenborough",
"address": "243 W Maple Street",
"latitude": -50.544085,
"longitude": 133.431159,
"starRating": 2,
"rating": 4.2,
"ratingCount": 4293,
"priceFromPerNight": 1330.08,
"currency": "EUR",
"amenities": [
"pet-friendly",
"airport-shuttle",
"casino"
],
"createdAt": "2024-10-05T13:54:51.793Z"
}