Runny Suites Wellington
hotel · Wellington · $1325.78+/night · ★ 4.2 (864)
867 Don Parks
conciergewifirestaurantpet-friendlygym
hotels / #59
hotel · Wellington · $1325.78+/night · ★ 4.2 (864)
867 Don Parks
curl -sS \
"https://example-data.com/api/v1/hotels/59" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/59"
);
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/59"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/59"
)
hotel = res.json() {
"id": 59,
"name": "Runny Suites Wellington",
"slug": "runny-suites-wellington-59",
"brand": "Marriott",
"countryAlpha2": "CL",
"city": "Wellington",
"address": "867 Don Parks",
"latitude": -41.670162,
"longitude": 157.947406,
"starRating": 4,
"rating": 4.2,
"ratingCount": 864,
"priceFromPerNight": 1325.78,
"currency": "GBP",
"amenities": [
"concierge",
"wifi",
"restaurant",
"pet-friendly",
"gym"
],
"createdAt": "2025-03-09T09:14:00.028Z"
}