Calculating Palace Port Charlotte
hotel · Port Charlotte · $1637.75+/night · ★ 4.8 (1851)
68974 Marty Lodge
wifispabarconciergerestaurant
Overview
hotels / #141
hotel · Port Charlotte · $1637.75+/night · ★ 4.8 (1851)
68974 Marty Lodge
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/141" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/141" ); 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/141"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/141"
)
hotel = res.json() Response
{
"id": 141,
"name": "Calculating Palace Port Charlotte",
"slug": "calculating-palace-port-charlotte-141",
"brand": null,
"countryAlpha2": "MA",
"city": "Port Charlotte",
"address": "68974 Marty Lodge",
"latitude": 27.434501,
"longitude": 72.767124,
"starRating": 3,
"rating": 4.8,
"ratingCount": 1851,
"priceFromPerNight": 1637.75,
"currency": "TRY",
"amenities": [
"wifi",
"spa",
"bar",
"concierge",
"restaurant"
],
"createdAt": "2024-10-26T09:35:29.364Z"
}