example-data.com

properties / #38

Kellyfield Loft

loft · Kellyfield · $505.5/night · ★ 3.6 (1826)

672 Clarendon Road

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/38" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/38"
);
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/38"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/38"
)
propertie = res.json()
{
  "id": 38,
  "name": "Kellyfield Loft",
  "slug": "kellyfield-loft-38",
  "type": "loft",
  "countryAlpha2": "US",
  "city": "Kellyfield",
  "address": "672 Clarendon Road",
  "latitude": -54.406497,
  "longitude": 113.282356,
  "bedrooms": 2,
  "bathrooms": 2.5,
  "maxGuests": 1,
  "pricePerNight": 505.5,
  "currency": "AUD",
  "rating": 3.6,
  "ratingCount": 1826,
  "hostUserId": 215,
  "createdAt": "2025-08-06T13:57:41.086Z",
  "updatedAt": "2026-01-29T12:48:06.120Z"
}
Draftbit