example-data.com

hotels / #133

Unconscious Suites South Arlene

hotel · South Arlene · $337.89+/night · ★ 3.5 (2815)

95041 Lindgren Lake

pet-friendlyparkinggymcasinoconciergerestaurantairport-shuttlebusiness-center

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/133"
)
hotel = res.json()
{
  "id": 133,
  "name": "Unconscious Suites South Arlene",
  "slug": "unconscious-suites-south-arlene-133",
  "brand": "Marriott",
  "countryAlpha2": "CN",
  "city": "South Arlene",
  "address": "95041 Lindgren Lake",
  "latitude": -23.757387,
  "longitude": -166.525457,
  "starRating": 2,
  "rating": 3.5,
  "ratingCount": 2815,
  "priceFromPerNight": 337.89,
  "currency": "JPY",
  "amenities": [
    "pet-friendly",
    "parking",
    "gym",
    "casino",
    "concierge",
    "restaurant",
    "airport-shuttle",
    "business-center"
  ],
  "createdAt": "2024-12-04T02:37:52.083Z"
}
Draftbit