example-data.com

properties / #64

Willhaven Loft

loft · Willhaven · $573.19/night · ★ 4.6 (1928)

234 Muriel Trail

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/64"
)
propertie = res.json()
{
  "id": 64,
  "name": "Willhaven Loft",
  "slug": "willhaven-loft-64",
  "type": "loft",
  "countryAlpha2": "PT",
  "city": "Willhaven",
  "address": "234 Muriel Trail",
  "latitude": -31.550191,
  "longitude": -171.141737,
  "bedrooms": 2,
  "bathrooms": 1,
  "maxGuests": 5,
  "pricePerNight": 573.19,
  "currency": "MXN",
  "rating": 4.6,
  "ratingCount": 1928,
  "hostUserId": 71,
  "createdAt": "2025-10-24T00:33:34.164Z",
  "updatedAt": "2025-10-27T16:56:48.725Z"
}
Draftbit