Overdue Suites East Brain
hotel · East Brain · $171.58+/night · ★ 2.5 (4978)
23290 Runolfsdottir Stream
pet-friendlybusiness-centergympoolspa
Overview
hotels / #132
hotel · East Brain · $171.58+/night · ★ 2.5 (4978)
23290 Runolfsdottir Stream
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/132" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/132" ); 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/132"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/132"
)
hotel = res.json() Response
{
"id": 132,
"name": "Overdue Suites East Brain",
"slug": "overdue-suites-east-brain-132",
"brand": null,
"countryAlpha2": "PK",
"city": "East Brain",
"address": "23290 Runolfsdottir Stream",
"latitude": 44.810626,
"longitude": 161.680829,
"starRating": 4,
"rating": 2.5,
"ratingCount": 4978,
"priceFromPerNight": 171.58,
"currency": "SGD",
"amenities": [
"pet-friendly",
"business-center",
"gym",
"pool",
"spa"
],
"createdAt": "2026-01-28T01:36:15.684Z"
}