example-data.com

hotels / #104

Snarling Inn Fort Esmeraldafurt

hotel · Fort Esmeraldafurt · $1313.06+/night · ★ 2.5 (3102)

30273 Treva Spur

parkingwifi

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/104"
)
hotel = res.json()
{
  "id": 104,
  "name": "Snarling Inn Fort Esmeraldafurt",
  "slug": "snarling-inn-fort-esmeraldafurt-104",
  "brand": "Marriott",
  "countryAlpha2": "GB",
  "city": "Fort Esmeraldafurt",
  "address": "30273 Treva Spur",
  "latitude": 17.632127,
  "longitude": 166.514842,
  "starRating": 2,
  "rating": 2.5,
  "ratingCount": 3102,
  "priceFromPerNight": 1313.06,
  "currency": "TRY",
  "amenities": [
    "parking",
    "wifi"
  ],
  "createdAt": "2024-12-31T23:29:37.002Z"
}
Draftbit