example-data.com

properties / #147

New Hudsonfield Condo

condo · New Hudsonfield · $1296.8/night · ★ 3.9 (1125)

53091 Margarett Plaza

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/147" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/147"
);
const propertie = await res.json();
import type { Propertie } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties/147"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/147"
)
propertie = res.json()
{
  "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"
}
Draftbit