Miserly Inn Mayertview
hotel · Mayertview · $1410.99+/night · ★ 3.3 (795)
143 Nelle Manors
restaurantbeach-accesspet-friendlygym
hotels / #129
hotel · Mayertview · $1410.99+/night · ★ 3.3 (795)
143 Nelle Manors
curl -sS \
"https://example-data.com/api/v1/hotels/129" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/129"
);
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/129"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/129"
)
hotel = res.json() {
"id": 129,
"name": "Miserly Inn Mayertview",
"slug": "miserly-inn-mayertview-129",
"brand": null,
"countryAlpha2": "CH",
"city": "Mayertview",
"address": "143 Nelle Manors",
"latitude": 38.773442,
"longitude": 95.341118,
"starRating": 4,
"rating": 3.3,
"ratingCount": 795,
"priceFromPerNight": 1410.99,
"currency": "GBP",
"amenities": [
"restaurant",
"beach-access",
"pet-friendly",
"gym"
],
"createdAt": "2025-02-14T23:32:21.569Z"
}