Lelaport Condo
condo · Lelaport · $481.22/night · ★ 4.6 (1288)
496 Christian Mount
Overview
properties / #40
condo · Lelaport · $481.22/night · ★ 4.6 (1288)
496 Christian Mount
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/40" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/40" ); 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/40"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/40"
)
propertie = res.json() Response
{
"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"
}