example-data.com

hotels / #148

Pleased Hotel San Juan

hotel · San Juan · $1159.28+/night · ★ 2.9 (3243)

55404 Jaclyn Springs

gymbusiness-centerpoolrestaurantlaundryspa

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/148"
)
hotel = res.json()
{
  "id": 148,
  "name": "Pleased Hotel San Juan",
  "slug": "pleased-hotel-san-juan-148",
  "brand": "IHG",
  "countryAlpha2": "MA",
  "city": "San Juan",
  "address": "55404 Jaclyn Springs",
  "latitude": 52.755668,
  "longitude": -139.957609,
  "starRating": 5,
  "rating": 2.9,
  "ratingCount": 3243,
  "priceFromPerNight": 1159.28,
  "currency": "TRY",
  "amenities": [
    "gym",
    "business-center",
    "pool",
    "restaurant",
    "laundry",
    "spa"
  ],
  "createdAt": "2025-01-17T10:59:38.473Z"
}
Draftbit