Filibertobury Loft
loft · Filibertobury · $569.07/night · ★ 2.7 (1165)
7210 Commercial Road
Overview
properties / #50
loft · Filibertobury · $569.07/night · ★ 2.7 (1165)
7210 Commercial Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/50" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/50" ); 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/50"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/50"
)
propertie = res.json() Response
{
"id": 50,
"name": "Filibertobury Loft",
"slug": "filibertobury-loft-50",
"type": "loft",
"countryAlpha2": "PH",
"city": "Filibertobury",
"address": "7210 Commercial Road",
"latitude": 33.745661,
"longitude": 102.97549,
"bedrooms": 6,
"bathrooms": 0.5,
"maxGuests": 4,
"pricePerNight": 569.07,
"currency": "AED",
"rating": 2.7,
"ratingCount": 1165,
"hostUserId": 55,
"createdAt": "2026-05-08T04:58:09.208Z",
"updatedAt": "2026-05-10T21:51:26.302Z"
}