Immense Hotel Port Antwon
hotel · Port Antwon · $1854.66+/night · ★ 4.0 (1694)
181 Orchard Road
pet-friendlybusiness-centerwifipool
Overview
hotels / #51
hotel · Port Antwon · $1854.66+/night · ★ 4.0 (1694)
181 Orchard Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/51" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/51" ); 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/51"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/51"
)
hotel = res.json() Response
{
"id": 51,
"name": "Immense Hotel Port Antwon",
"slug": "immense-hotel-port-antwon-51",
"brand": "Wyndham",
"countryAlpha2": "CL",
"city": "Port Antwon",
"address": "181 Orchard Road",
"latitude": 41.047822,
"longitude": -106.395747,
"starRating": 2,
"rating": 4,
"ratingCount": 1694,
"priceFromPerNight": 1854.66,
"currency": "USD",
"amenities": [
"pet-friendly",
"business-center",
"wifi",
"pool"
],
"createdAt": "2024-10-15T09:03:13.404Z"
}