Prestigious Hotel Bobbiehaven
hotel · Bobbiehaven · $611.45+/night · ★ 2.9 (929)
84915 The Square
gympet-friendlypoollaundryparkingspa
hotels / #76
hotel · Bobbiehaven · $611.45+/night · ★ 2.9 (929)
84915 The Square
curl -sS \
"https://example-data.com/api/v1/hotels/76" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/hotels/76"
);
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/76"
);
const hotel = (await res.json()) as Hotel;import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/76"
)
hotel = res.json() {
"id": 76,
"name": "Prestigious Hotel Bobbiehaven",
"slug": "prestigious-hotel-bobbiehaven-76",
"brand": "Hyatt",
"countryAlpha2": "FJ",
"city": "Bobbiehaven",
"address": "84915 The Square",
"latitude": 20.281155,
"longitude": -13.997707,
"starRating": 5,
"rating": 2.9,
"ratingCount": 929,
"priceFromPerNight": 611.45,
"currency": "GBP",
"amenities": [
"gym",
"pet-friendly",
"pool",
"laundry",
"parking",
"spa"
],
"createdAt": "2026-05-06T17:34:54.378Z"
}