example-data.com

properties / #31

South Kalebcester Villa

villa · South Kalebcester · $1072.3/night · ★ 4.8 (823)

853 Garrison Walk

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/31"
)
propertie = res.json()
{
  "id": 31,
  "name": "South Kalebcester Villa",
  "slug": "south-kalebcester-villa-31",
  "type": "villa",
  "countryAlpha2": "AU",
  "city": "South Kalebcester",
  "address": "853 Garrison Walk",
  "latitude": 33.993694,
  "longitude": 9.827669,
  "bedrooms": 0,
  "bathrooms": 3.5,
  "maxGuests": 1,
  "pricePerNight": 1072.3,
  "currency": "SGD",
  "rating": 4.8,
  "ratingCount": 823,
  "hostUserId": 93,
  "createdAt": "2024-08-22T07:00:32.948Z",
  "updatedAt": "2025-08-27T21:53:09.724Z"
}
Draftbit