example-data.com

properties / #109

Livonia House

house · Livonia · $935.11/night · ★ 3.8 (1305)

3421 Jerome Centers

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/109"
)
propertie = res.json()
{
  "id": 109,
  "name": "Livonia House",
  "slug": "livonia-house-109",
  "type": "house",
  "countryAlpha2": "DE",
  "city": "Livonia",
  "address": "3421 Jerome Centers",
  "latitude": -2.31843,
  "longitude": 60.309974,
  "bedrooms": 4,
  "bathrooms": 1.5,
  "maxGuests": 2,
  "pricePerNight": 935.11,
  "currency": "CAD",
  "rating": 3.8,
  "ratingCount": 1305,
  "hostUserId": 144,
  "createdAt": "2025-08-29T13:01:14.960Z",
  "updatedAt": "2025-09-20T09:53:43.118Z"
}
Draftbit