example-data.com

properties / #60

Lake Ridge Loft

loft · Lake Ridge · $1001.65/night · ★ 3.1 (1180)

708 Oberbrunner Cliff

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/60"
)
propertie = res.json()
{
  "id": 60,
  "name": "Lake Ridge Loft",
  "slug": "lake-ridge-loft-60",
  "type": "loft",
  "countryAlpha2": "PK",
  "city": "Lake Ridge",
  "address": "708 Oberbrunner Cliff",
  "latitude": -36.587787,
  "longitude": -149.689678,
  "bedrooms": 4,
  "bathrooms": 1.5,
  "maxGuests": 2,
  "pricePerNight": 1001.65,
  "currency": "MXN",
  "rating": 3.1,
  "ratingCount": 1180,
  "hostUserId": 77,
  "createdAt": "2025-10-18T22:30:01.906Z",
  "updatedAt": "2026-01-07T04:05:52.124Z"
}
Draftbit