Ironclad Hotel Handside
hotel · Handside · $594.53+/night · ★ 4.3 (3132)
7693 Britney Curve
spawifiairport-shuttle
Overview
hotels / #7
hotel · Handside · $594.53+/night · ★ 4.3 (3132)
7693 Britney Curve
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/7" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/7" ); 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/7"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/7"
)
hotel = res.json() Response
{
"id": 7,
"name": "Ironclad Hotel Handside",
"slug": "ironclad-hotel-handside-7",
"brand": "Radisson",
"countryAlpha2": "FJ",
"city": "Handside",
"address": "7693 Britney Curve",
"latitude": -26.013203,
"longitude": -39.305577,
"starRating": 2,
"rating": 4.3,
"ratingCount": 3132,
"priceFromPerNight": 594.53,
"currency": "EUR",
"amenities": [
"spa",
"wifi",
"airport-shuttle"
],
"createdAt": "2025-05-15T08:00:51.872Z"
}