Pleased Hotel San Juan
hotel · San Juan · $1159.28+/night · ★ 2.9 (3243)
55404 Jaclyn Springs
gymbusiness-centerpoolrestaurantlaundryspa
Overview
hotels / #148
hotel · San Juan · $1159.28+/night · ★ 2.9 (3243)
55404 Jaclyn Springs
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/148" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/148" ); 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/148"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/148"
)
hotel = res.json() Response
{
"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"
}