Accomplished Hotel Mount Pleasant
hotel · Mount Pleasant · $1925.14+/night · ★ 2.9 (1387)
998 Green Street
restaurantpet-friendlybusiness-center
Overview
hotels / #126
hotel · Mount Pleasant · $1925.14+/night · ★ 2.9 (1387)
998 Green Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/126" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/126" ); const hotel = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/hotels.d.ts https://example-data.com/types/hotels.d.ts
import type { Hotel } from "./types/hotels";
const res = await fetch(
"https://example-data.com/api/v1/hotels/126"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/126"
)
hotel = res.json() Response
{
"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"
}