Enchanting Lodge Fort Lauderdale
hotel · Fort Lauderdale · $1187.58+/night · ★ 3.5 (2427)
61959 Pauline Spring
conciergegympoollaundrypet-friendlybusiness-centerspabar
hotels / #3
hotel · Fort Lauderdale · $1187.58+/night · ★ 3.5 (2427)
61959 Pauline Spring
curl -sS \
"https://example-data.com/api/v1/hotels/3" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/3"
);
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/3"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/3"
)
hotel = res.json() {
"id": 3,
"name": "Enchanting Lodge Fort Lauderdale",
"slug": "enchanting-lodge-fort-lauderdale-3",
"brand": "Ritz-Carlton",
"countryAlpha2": "AR",
"city": "Fort Lauderdale",
"address": "61959 Pauline Spring",
"latitude": -41.461844,
"longitude": 155.356649,
"starRating": 4,
"rating": 3.5,
"ratingCount": 2427,
"priceFromPerNight": 1187.58,
"currency": "AUD",
"amenities": [
"concierge",
"gym",
"pool",
"laundry",
"pet-friendly",
"business-center",
"spa",
"bar"
],
"createdAt": "2025-01-18T17:01:59.709Z"
}