Neighboring Resort Bergstromborough
hotel · Bergstromborough · $1649.38+/night · ★ 2.5 (1767)
4082 Sonny Court
laundryspawifibarcasinobusiness-center
Overview
hotels / #15
hotel · Bergstromborough · $1649.38+/night · ★ 2.5 (1767)
4082 Sonny Court
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/15" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/15" ); 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/15"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/15"
)
hotel = res.json() Response
{
"id": 15,
"name": "Neighboring Resort Bergstromborough",
"slug": "neighboring-resort-bergstromborough-15",
"brand": "Ritz-Carlton",
"countryAlpha2": "AU",
"city": "Bergstromborough",
"address": "4082 Sonny Court",
"latitude": 26.729526,
"longitude": -135.489423,
"starRating": 2,
"rating": 2.5,
"ratingCount": 1767,
"priceFromPerNight": 1649.38,
"currency": "USD",
"amenities": [
"laundry",
"spa",
"wifi",
"bar",
"casino",
"business-center"
],
"createdAt": "2025-10-08T01:52:24.922Z"
}