example-data.com

hotels / #117

Ugly Suites Port Candidoboro

hotel · Port Candidoboro · $81.17+/night · ★ 4.0 (4653)

6299 Sycamore Drive

pet-friendlyairport-shuttlepoolroom-servicebusiness-centerconcierge

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/hotels/117"
)
hotel = res.json()
{
  "id": 117,
  "name": "Ugly Suites Port Candidoboro",
  "slug": "ugly-suites-port-candidoboro-117",
  "brand": "Accor",
  "countryAlpha2": "BE",
  "city": "Port Candidoboro",
  "address": "6299 Sycamore Drive",
  "latitude": 44.886835,
  "longitude": -122.882341,
  "starRating": 2,
  "rating": 4,
  "ratingCount": 4653,
  "priceFromPerNight": 81.17,
  "currency": "AUD",
  "amenities": [
    "pet-friendly",
    "airport-shuttle",
    "pool",
    "room-service",
    "business-center",
    "concierge"
  ],
  "createdAt": "2026-03-13T05:11:01.791Z"
}
Draftbit