Surprised Palace Port Karenchester
hotel · Port Karenchester · $779.43+/night · ★ 4.5 (4319)
5749 Barn Close
room-servicecasino
Overview
hotels / #122
hotel · Port Karenchester · $779.43+/night · ★ 4.5 (4319)
5749 Barn Close
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/122" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/122" ); 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/122"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/122"
)
hotel = res.json() Response
{
"id": 122,
"name": "Surprised Palace Port Karenchester",
"slug": "surprised-palace-port-karenchester-122",
"brand": "Accor",
"countryAlpha2": "AR",
"city": "Port Karenchester",
"address": "5749 Barn Close",
"latitude": -21.166604,
"longitude": -3.954863,
"starRating": 4,
"rating": 4.5,
"ratingCount": 4319,
"priceFromPerNight": 779.43,
"currency": "USD",
"amenities": [
"room-service",
"casino"
],
"createdAt": "2025-04-12T19:34:52.844Z"
}