Immediate Palace New Khalid
hotel · New Khalid · $1667.81+/night · ★ 4.8 (168)
39060 Greenholt River
airport-shuttlerestaurantbeach-accesswifi
hotels / #103
hotel · New Khalid · $1667.81+/night · ★ 4.8 (168)
39060 Greenholt River
curl -sS \
"https://example-data.com/api/v1/hotels/103" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/103"
);
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/103"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/103"
)
hotel = res.json() {
"id": 103,
"name": "Immediate Palace New Khalid",
"slug": "immediate-palace-new-khalid-103",
"brand": null,
"countryAlpha2": "EG",
"city": "New Khalid",
"address": "39060 Greenholt River",
"latitude": 30.730972,
"longitude": -172.917924,
"starRating": 5,
"rating": 4.8,
"ratingCount": 168,
"priceFromPerNight": 1667.81,
"currency": "CAD",
"amenities": [
"airport-shuttle",
"restaurant",
"beach-access",
"wifi"
],
"createdAt": "2024-09-02T17:40:54.578Z"
}