Runny Suites Wellington
hotel · Wellington · $1325.78+/night · ★ 4.2 (864)
867 Don Parks
conciergewifirestaurantpet-friendlygym
Overview
hotels / #59
hotel · Wellington · $1325.78+/night · ★ 4.2 (864)
867 Don Parks
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/59" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/59" ); 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/59"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/59"
)
hotel = res.json() Response
{
"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"
}