Prestigious Suites Apopka
hotel · Apopka · $1875.54+/night · ★ 2.9 (898)
638 Marks Pass
gymconciergepet-friendlybusiness-centerbarbeach-accessroom-servicepool
Overview
hotels / #93
hotel · Apopka · $1875.54+/night · ★ 2.9 (898)
638 Marks Pass
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/93" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/93" ); 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/93"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/93"
)
hotel = res.json() Response
{
"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"
}