example-data.com

hotels / #113

Hopeful Palace Erie

hotel · Erie · $1730.17+/night · ★ 2.5 (3273)

52951 Roberta Avenue

barpoolrestaurantroom-serviceconciergeairport-shuttlespawifi

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/113"
)
hotel = res.json()
{
  "id": 113,
  "name": "Hopeful Palace Erie",
  "slug": "hopeful-palace-erie-113",
  "brand": "Wyndham",
  "countryAlpha2": "PH",
  "city": "Erie",
  "address": "52951 Roberta Avenue",
  "latitude": 39.762688,
  "longitude": -56.633284,
  "starRating": 4,
  "rating": 2.5,
  "ratingCount": 3273,
  "priceFromPerNight": 1730.17,
  "currency": "AUD",
  "amenities": [
    "bar",
    "pool",
    "restaurant",
    "room-service",
    "concierge",
    "airport-shuttle",
    "spa",
    "wifi"
  ],
  "createdAt": "2025-02-18T08:17:06.749Z"
}
Draftbit