Second-hand Suites East Maya
hotel · East Maya · $1750.97+/night · ★ 3.3 (4513)
10967 Alexandrine Plaza
beach-accesscasinogympet-friendlywifisparoom-service
hotels / #8
hotel · East Maya · $1750.97+/night · ★ 3.3 (4513)
10967 Alexandrine Plaza
curl -sS \
"https://example-data.com/api/v1/hotels/8" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/8"
);
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/8"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/8"
)
hotel = res.json() {
"id": 8,
"name": "Second-hand Suites East Maya",
"slug": "second-hand-suites-east-maya-8",
"brand": "Hyatt",
"countryAlpha2": "AE",
"city": "East Maya",
"address": "10967 Alexandrine Plaza",
"latitude": -38.91839,
"longitude": 76.913309,
"starRating": 5,
"rating": 3.3,
"ratingCount": 4513,
"priceFromPerNight": 1750.97,
"currency": "AED",
"amenities": [
"beach-access",
"casino",
"gym",
"pet-friendly",
"wifi",
"spa",
"room-service"
],
"createdAt": "2024-08-15T16:28:14.346Z"
}