New Hudsonfield Condo
condo · New Hudsonfield · $1296.8/night · ★ 3.9 (1125)
53091 Margarett Plaza
Overview
properties / #147
condo · New Hudsonfield · $1296.8/night · ★ 3.9 (1125)
53091 Margarett Plaza
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/147" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/147" ); 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/147"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/147"
)
propertie = res.json() Response
{
"id": 147,
"name": "New Hudsonfield Condo",
"slug": "new-hudsonfield-condo-147",
"type": "condo",
"countryAlpha2": "AU",
"city": "New Hudsonfield",
"address": "53091 Margarett Plaza",
"latitude": -7.487397,
"longitude": 6.373914,
"bedrooms": 6,
"bathrooms": 1,
"maxGuests": 3,
"pricePerNight": 1296.8,
"currency": "JPY",
"rating": 3.9,
"ratingCount": 1125,
"hostUserId": 199,
"createdAt": "2026-01-06T05:32:44.468Z",
"updatedAt": "2026-02-22T07:46:16.525Z"
}