Catalina Foothills Condo
condo · Catalina Foothills · $247.3/night · ★ 4.6 (1419)
674 Lincoln Highway
Overview
properties / #153
condo · Catalina Foothills · $247.3/night · ★ 4.6 (1419)
674 Lincoln Highway
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/153" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/153" ); const property = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property } from "./types/properties";
const res = await fetch(
"https://example-data.com/api/v1/properties/153"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/153"
)
propertie = res.json() Response
{
"id": 153,
"name": "Catalina Foothills Condo",
"slug": "catalina-foothills-condo-153",
"type": "condo",
"countryAlpha2": "CA",
"city": "Catalina Foothills",
"address": "674 Lincoln Highway",
"latitude": -31.312851,
"longitude": 24.476849,
"bedrooms": 4,
"bathrooms": 0.5,
"maxGuests": 6,
"pricePerNight": 247.3,
"currency": "SGD",
"rating": 4.6,
"ratingCount": 1419,
"hostUserId": 147,
"createdAt": "2025-11-08T21:44:45.584Z",
"updatedAt": "2026-01-24T19:10:10.882Z"
}