Talkative Inn Balistreriworth
hotel · Balistreriworth · $774.04+/night · ★ 2.1 (4397)
694 Abernathy Rue
wifirestaurantsparoom-servicepet-friendlypoollaundry
Overview
hotels / #127
hotel · Balistreriworth · $774.04+/night · ★ 2.1 (4397)
694 Abernathy Rue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/127" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/127" ); 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/127"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/127"
)
hotel = res.json() Response
{
"id": 127,
"name": "Talkative Inn Balistreriworth",
"slug": "talkative-inn-balistreriworth-127",
"brand": "Best Western",
"countryAlpha2": "EG",
"city": "Balistreriworth",
"address": "694 Abernathy Rue",
"latitude": 25.403155,
"longitude": 4.708624,
"starRating": 5,
"rating": 2.1,
"ratingCount": 4397,
"priceFromPerNight": 774.04,
"currency": "TRY",
"amenities": [
"wifi",
"restaurant",
"spa",
"room-service",
"pet-friendly",
"pool",
"laundry"
],
"createdAt": "2026-01-05T06:02:16.865Z"
}