Ugly Suites Port Candidoboro
hotel · Port Candidoboro · $81.17+/night · ★ 4.0 (4653)
6299 Sycamore Drive
pet-friendlyairport-shuttlepoolroom-servicebusiness-centerconcierge
Overview
hotels / #117
hotel · Port Candidoboro · $81.17+/night · ★ 4.0 (4653)
6299 Sycamore Drive
Request
curl example
curl -sS \ "https://example-data.com/api/v1/hotels/117" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/hotels/117" ); 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/117"
);
const hotel = (await res.json()) as Hotel; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/hotels/117"
)
hotel = res.json() Response
{
"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"
}