example-data.com

properties / #67

Lake Lionel Condo

condo · Lake Lionel · $69.82/night · ★ 4.2 (1590)

37436 Brookside

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/67"
)
propertie = res.json()
{
  "id": 67,
  "name": "Lake Lionel Condo",
  "slug": "lake-lionel-condo-67",
  "type": "condo",
  "countryAlpha2": "KR",
  "city": "Lake Lionel",
  "address": "37436 Brookside",
  "latitude": 48.288205,
  "longitude": -100.837843,
  "bedrooms": 3,
  "bathrooms": 4,
  "maxGuests": 4,
  "pricePerNight": 69.82,
  "currency": "BRL",
  "rating": 4.2,
  "ratingCount": 1590,
  "hostUserId": 163,
  "createdAt": "2025-07-21T16:13:33.242Z",
  "updatedAt": "2025-08-22T07:59:02.464Z"
}
Draftbit