example-data.com

properties / #153

Catalina Foothills Condo

condo · Catalina Foothills · $247.3/night · ★ 4.6 (1419)

674 Lincoln Highway

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/153" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/153"
);
const propertie = await res.json();
import type { Propertie } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties/153"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/153"
)
propertie = res.json()
{
  "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"
}
Draftbit