Lombard Loft
loft · Lombard · $1235.09/night · ★ 4.0 (1790)
6760 Elroy Ford
Overview
properties / #179
loft · Lombard · $1235.09/night · ★ 4.0 (1790)
6760 Elroy Ford
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/179" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/179" ); 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/179"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/179"
)
propertie = res.json() Response
{
"id": 179,
"name": "Lombard Loft",
"slug": "lombard-loft-179",
"type": "loft",
"countryAlpha2": "CL",
"city": "Lombard",
"address": "6760 Elroy Ford",
"latitude": 2.706984,
"longitude": -82.403038,
"bedrooms": 4,
"bathrooms": 0.5,
"maxGuests": 6,
"pricePerNight": 1235.09,
"currency": "AUD",
"rating": 4,
"ratingCount": 1790,
"hostUserId": 54,
"createdAt": "2025-12-09T17:30:52.631Z",
"updatedAt": "2026-02-05T11:24:48.419Z"
}