example-data.com

properties / #135

Lake Brett Condo

condo · Lake Brett · $512.78/night · ★ 3.9 (909)

94455 Hauck Estate

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/135"
)
propertie = res.json()
{
  "id": 135,
  "name": "Lake Brett Condo",
  "slug": "lake-brett-condo-135",
  "type": "condo",
  "countryAlpha2": "MY",
  "city": "Lake Brett",
  "address": "94455 Hauck Estate",
  "latitude": -38.044813,
  "longitude": -19.589791,
  "bedrooms": 3,
  "bathrooms": 2,
  "maxGuests": 8,
  "pricePerNight": 512.78,
  "currency": "MXN",
  "rating": 3.9,
  "ratingCount": 909,
  "hostUserId": 105,
  "createdAt": "2024-06-17T18:41:52.887Z",
  "updatedAt": "2025-06-23T14:43:05.566Z"
}
Draftbit