example-data.com
Menu
Browse docs and collections

Overview

properties / #38

Kellyfield Loft

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

672 Clarendon Road

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/properties/38" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties/38"
);
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/38"
);
const property = (await res.json()) as Property;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/38"
)
propertie = res.json()

Response

{
  "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"
}