Dazzling Hotel Fort Janiya
hotel · Fort Janiya · $1013.23+/night · ★ 2.8 (4179)
996 Frontage Road
laundryrestaurantairport-shuttlegym
hotels / #42
hotel · Fort Janiya · $1013.23+/night · ★ 2.8 (4179)
996 Frontage Road
curl -sS \
"https://example-data.com/api/v1/hotels/42" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/42"
);
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/42"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/42"
)
hotel = res.json() {
"id": 42,
"name": "Dazzling Hotel Fort Janiya",
"slug": "dazzling-hotel-fort-janiya-42",
"brand": "Marriott",
"countryAlpha2": "US",
"city": "Fort Janiya",
"address": "996 Frontage Road",
"latitude": -2.348882,
"longitude": -93.616105,
"starRating": 4,
"rating": 2.8,
"ratingCount": 4179,
"priceFromPerNight": 1013.23,
"currency": "AED",
"amenities": [
"laundry",
"restaurant",
"airport-shuttle",
"gym"
],
"createdAt": "2024-07-25T10:15:03.103Z"
}