Prestigious Hotel Bobbiehaven
hotel · Bobbiehaven · $611.45+/night · ★ 2.9 (929)
84915 The Square
gympet-friendlypoollaundryparkingspa
Overview
hotels / #76
hotel · Bobbiehaven · $611.45+/night · ★ 2.9 (929)
84915 The Square
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/76" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/76" ); 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/76"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/76"
)
hotel = res.json() Response
{
"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"
}