example-data.com

hotels / #36

Severe Inn Brownfield

hotel · Brownfield · $426.14+/night · ★ 2.1 (2141)

95402 Daisha Point

room-serviceparkingairport-shuttlebar

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/36"
)
hotel = res.json()
{
  "id": 36,
  "name": "Severe Inn Brownfield",
  "slug": "severe-inn-brownfield-36",
  "brand": "Accor",
  "countryAlpha2": "CH",
  "city": "Brownfield",
  "address": "95402 Daisha Point",
  "latitude": -27.27321,
  "longitude": -76.733966,
  "starRating": 5,
  "rating": 2.1,
  "ratingCount": 2141,
  "priceFromPerNight": 426.14,
  "currency": "EUR",
  "amenities": [
    "room-service",
    "parking",
    "airport-shuttle",
    "bar"
  ],
  "createdAt": "2025-06-03T22:45:47.081Z"
}
Draftbit