example-data.com

hotels / #123

True Inn Charleschester

hotel · Charleschester · $1522.18+/night · ★ 3.2 (1405)

59082 Marilyne Ford

business-centerparking

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/123" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/123"
);
const hotel = await res.json();
import type { Hotel } from "https://example-data.com/types/hotels.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/hotels/123"
);
const hotel = (await res.json()) as Hotel;
import requests

res = requests.get(
    "https://example-data.com/api/v1/hotels/123"
)
hotel = res.json()
{
  "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"
}
Draftbit