example-data.com

properties / #189

Keeblershire Loft

loft · Keeblershire · $455.63/night · ★ 4.5 (170)

26294 Lind Viaduct

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/189"
)
propertie = res.json()
{
  "id": 189,
  "name": "Keeblershire Loft",
  "slug": "keeblershire-loft-189",
  "type": "loft",
  "countryAlpha2": "AT",
  "city": "Keeblershire",
  "address": "26294 Lind Viaduct",
  "latitude": -1.833314,
  "longitude": -67.612798,
  "bedrooms": 0,
  "bathrooms": 4,
  "maxGuests": 2,
  "pricePerNight": 455.63,
  "currency": "USD",
  "rating": 4.5,
  "ratingCount": 170,
  "hostUserId": 187,
  "createdAt": "2025-11-05T08:11:07.023Z",
  "updatedAt": "2026-04-12T15:14:15.342Z"
}
Draftbit