example-data.com

hotels / #126

Accomplished Hotel Mount Pleasant

hotel · Mount Pleasant · $1925.14+/night · ★ 2.9 (1387)

998 Green Street

restaurantpet-friendlybusiness-center

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/126"
)
hotel = res.json()
{
  "id": 126,
  "name": "Accomplished Hotel Mount Pleasant",
  "slug": "accomplished-hotel-mount-pleasant-126",
  "brand": "Radisson",
  "countryAlpha2": "CA",
  "city": "Mount Pleasant",
  "address": "998 Green Street",
  "latitude": 7.639927,
  "longitude": -33.62919,
  "starRating": 4,
  "rating": 2.9,
  "ratingCount": 1387,
  "priceFromPerNight": 1925.14,
  "currency": "AED",
  "amenities": [
    "restaurant",
    "pet-friendly",
    "business-center"
  ],
  "createdAt": "2025-05-19T10:57:36.815Z"
}
Draftbit