example-data.com

properties / #40

Lelaport Condo

condo · Lelaport · $481.22/night · ★ 4.6 (1288)

496 Christian Mount

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/40"
)
propertie = res.json()
{
  "id": 40,
  "name": "Lelaport Condo",
  "slug": "lelaport-condo-40",
  "type": "condo",
  "countryAlpha2": "MY",
  "city": "Lelaport",
  "address": "496 Christian Mount",
  "latitude": 38.887653,
  "longitude": 160.721233,
  "bedrooms": 5,
  "bathrooms": 3.5,
  "maxGuests": 9,
  "pricePerNight": 481.22,
  "currency": "AED",
  "rating": 4.6,
  "ratingCount": 1288,
  "hostUserId": 79,
  "createdAt": "2024-08-19T04:32:08.379Z",
  "updatedAt": "2025-11-01T10:10:21.453Z"
}
Draftbit