example-data.com

hotels / #97

Dramatic Lodge West Adelia

hotel · West Adelia · $85.74+/night · ★ 3.5 (3669)

4143 E Pine Street

laundryrestaurantparkingspabeach-accesscasinoroom-servicewifi

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/97"
)
hotel = res.json()
{
  "id": 97,
  "name": "Dramatic Lodge West Adelia",
  "slug": "dramatic-lodge-west-adelia-97",
  "brand": "Hyatt",
  "countryAlpha2": "FR",
  "city": "West Adelia",
  "address": "4143 E Pine Street",
  "latitude": 7.881842,
  "longitude": 90.377236,
  "starRating": 3,
  "rating": 3.5,
  "ratingCount": 3669,
  "priceFromPerNight": 85.74,
  "currency": "GBP",
  "amenities": [
    "laundry",
    "restaurant",
    "parking",
    "spa",
    "beach-access",
    "casino",
    "room-service",
    "wifi"
  ],
  "createdAt": "2024-07-12T19:19:11.988Z"
}
Draftbit