example-data.com

hotels / #132

Overdue Suites East Brain

hotel · East Brain · $171.58+/night · ★ 2.5 (4978)

23290 Runolfsdottir Stream

pet-friendlybusiness-centergympoolspa

Component variants

curl -sS \
  "https://example-data.com/api/v1/hotels/132" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/hotels/132"
);
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/132"
);
const hotel = (await res.json()) as Hotel;
import requests

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