Funny Resort Delfinacester
hotel · Delfinacester · $667.04+/night · ★ 3.8 (4035)
10024 Jefferson Street
airport-shuttlebusiness-centerwifibarrestaurantcasino
Overview
hotels / #79
hotel · Delfinacester · $667.04+/night · ★ 3.8 (4035)
10024 Jefferson Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/79" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/79" ); 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/79"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/79"
)
hotel = res.json() Response
{
"id": 79,
"name": "Funny Resort Delfinacester",
"slug": "funny-resort-delfinacester-79",
"brand": "Hyatt",
"countryAlpha2": "JP",
"city": "Delfinacester",
"address": "10024 Jefferson Street",
"latitude": -20.585012,
"longitude": 105.934796,
"starRating": 3,
"rating": 3.8,
"ratingCount": 4035,
"priceFromPerNight": 667.04,
"currency": "THB",
"amenities": [
"airport-shuttle",
"business-center",
"wifi",
"bar",
"restaurant",
"casino"
],
"createdAt": "2025-06-18T19:27:37.932Z"
}