example-data.com

properties / #36

South Aileenfield Apartment

apartment · South Aileenfield · $420.69/night · ★ 3.4 (1531)

44819 Windmill Close

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/36"
)
propertie = res.json()
{
  "id": 36,
  "name": "South Aileenfield Apartment",
  "slug": "south-aileenfield-apartment-36",
  "type": "apartment",
  "countryAlpha2": "EG",
  "city": "South Aileenfield",
  "address": "44819 Windmill Close",
  "latitude": -24.996795,
  "longitude": 61.963427,
  "bedrooms": 6,
  "bathrooms": 2,
  "maxGuests": 4,
  "pricePerNight": 420.69,
  "currency": "AUD",
  "rating": 3.4,
  "ratingCount": 1531,
  "hostUserId": 150,
  "createdAt": "2024-10-30T22:13:23.817Z",
  "updatedAt": "2025-08-15T19:59:16.666Z"
}
Draftbit