Miserly Inn Mayertview
hotel · Mayertview · $1410.99+/night · ★ 3.3 (795)
143 Nelle Manors
restaurantbeach-accesspet-friendlygym
Overview
hotels / #129
hotel · Mayertview · $1410.99+/night · ★ 3.3 (795)
143 Nelle Manors
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/129" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/129" ); const hotel = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";
const res = await fetch(
"https://example-data.com/api/v1/hotels/129"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/129"
)
hotel = res.json() Response
{
"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"
}