True Inn Charleschester
hotel · Charleschester · $1522.18+/night · ★ 3.2 (1405)
59082 Marilyne Ford
business-centerparking
Overview
hotels / #123
hotel · Charleschester · $1522.18+/night · ★ 3.2 (1405)
59082 Marilyne Ford
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/123" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/123" ); 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/123"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/123"
)
hotel = res.json() Response
{
"id": 123,
"name": "True Inn Charleschester",
"slug": "true-inn-charleschester-123",
"brand": "IHG",
"countryAlpha2": "FI",
"city": "Charleschester",
"address": "59082 Marilyne Ford",
"latitude": 45.360578,
"longitude": -81.298293,
"starRating": 5,
"rating": 3.2,
"ratingCount": 1405,
"priceFromPerNight": 1522.18,
"currency": "JPY",
"amenities": [
"business-center",
"parking"
],
"createdAt": "2025-11-20T06:33:23.185Z"
}