example-data.com

hotels / #144

International Suites Adityamouth

hotel · Adityamouth · $1826.03+/night · ★ 3.2 (189)

52934 Clinton Street

poolsparoom-serviceairport-shuttle

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/144"
)
hotel = res.json()
{
  "id": 144,
  "name": "International Suites Adityamouth",
  "slug": "international-suites-adityamouth-144",
  "brand": "Accor",
  "countryAlpha2": "PH",
  "city": "Adityamouth",
  "address": "52934 Clinton Street",
  "latitude": -17.362398,
  "longitude": -77.901375,
  "starRating": 3,
  "rating": 3.2,
  "ratingCount": 189,
  "priceFromPerNight": 1826.03,
  "currency": "USD",
  "amenities": [
    "pool",
    "spa",
    "room-service",
    "airport-shuttle"
  ],
  "createdAt": "2025-09-17T10:07:59.280Z"
}
Draftbit