New Cecelia Loft
loft · New Cecelia · $1027.28/night · ★ 4.9 (1724)
217 VonRueden Island
Overview
properties / #115
loft · New Cecelia · $1027.28/night · ★ 4.9 (1724)
217 VonRueden Island
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/115" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/115" ); 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/115"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/115"
)
propertie = res.json() Response
{
"id": 115,
"name": "New Cecelia Loft",
"slug": "new-cecelia-loft-115",
"type": "loft",
"countryAlpha2": "BR",
"city": "New Cecelia",
"address": "217 VonRueden Island",
"latitude": 41.555458,
"longitude": 12.804277,
"bedrooms": 2,
"bathrooms": 2.5,
"maxGuests": 5,
"pricePerNight": 1027.28,
"currency": "AUD",
"rating": 4.9,
"ratingCount": 1724,
"hostUserId": 221,
"createdAt": "2025-01-01T06:12:25.739Z",
"updatedAt": "2025-07-27T10:19:02.986Z"
}