Enchanting Lodge Fort Lauderdale
hotel · Fort Lauderdale · $1187.58+/night · ★ 3.5 (2427)
61959 Pauline Spring
conciergegympoollaundrypet-friendlybusiness-centerspabar
Overview
hotels / #3
hotel · Fort Lauderdale · $1187.58+/night · ★ 3.5 (2427)
61959 Pauline Spring
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/3" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/3" ); 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/3"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/3"
)
hotel = res.json() Response
{
"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"
}