Prestigious Suites Apopka
hotel · Apopka · $1875.54+/night · ★ 2.9 (898)
638 Marks Pass
gymconciergepet-friendlybusiness-centerbarbeach-accessroom-servicepool
hotels / #93
hotel · Apopka · $1875.54+/night · ★ 2.9 (898)
638 Marks Pass
curl -sS \
"https://example-data.com/api/v1/hotels/93" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/93"
);
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/93"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/93"
)
hotel = res.json() {
"id": 93,
"name": "Prestigious Suites Apopka",
"slug": "prestigious-suites-apopka-93",
"brand": null,
"countryAlpha2": "AT",
"city": "Apopka",
"address": "638 Marks Pass",
"latitude": -12.540186,
"longitude": -64.711415,
"starRating": 5,
"rating": 2.9,
"ratingCount": 898,
"priceFromPerNight": 1875.54,
"currency": "THB",
"amenities": [
"gym",
"concierge",
"pet-friendly",
"business-center",
"bar",
"beach-access",
"room-service",
"pool"
],
"createdAt": "2026-03-19T04:28:33.245Z"
}