Meager Resort Lockmanfield
hotel · Lockmanfield · $1951.93+/night · ★ 4.1 (4600)
81583 W 6th Avenue
restaurantbarairport-shuttle
hotels / #34
hotel · Lockmanfield · $1951.93+/night · ★ 4.1 (4600)
81583 W 6th Avenue
curl -sS \
"https://example-data.com/api/v1/hotels/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/34"
);
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/34"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/34"
)
hotel = res.json() {
"id": 34,
"name": "Meager Resort Lockmanfield",
"slug": "meager-resort-lockmanfield-34",
"brand": null,
"countryAlpha2": "FI",
"city": "Lockmanfield",
"address": "81583 W 6th Avenue",
"latitude": -51.465418,
"longitude": 162.613337,
"starRating": 2,
"rating": 4.1,
"ratingCount": 4600,
"priceFromPerNight": 1951.93,
"currency": "AUD",
"amenities": [
"restaurant",
"bar",
"airport-shuttle"
],
"createdAt": "2025-11-14T02:12:37.165Z"
}