example-data.com

properties / #195

Renetown Condo

condo · Renetown · $1489.89/night · ★ 3.5 (418)

2452 Maurice Junctions

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/195"
)
propertie = res.json()
{
  "id": 195,
  "name": "Renetown Condo",
  "slug": "renetown-condo-195",
  "type": "condo",
  "countryAlpha2": "ET",
  "city": "Renetown",
  "address": "2452 Maurice Junctions",
  "latitude": 33.5695,
  "longitude": 15.501538,
  "bedrooms": 6,
  "bathrooms": 3.5,
  "maxGuests": 10,
  "pricePerNight": 1489.89,
  "currency": "SGD",
  "rating": 3.5,
  "ratingCount": 418,
  "hostUserId": 98,
  "createdAt": "2025-02-27T02:01:34.969Z",
  "updatedAt": "2025-08-20T15:59:04.791Z"
}
Draftbit