example-data.com

properties / #24

Kirlinfurt Apartment

apartment · Kirlinfurt · $802.4/night · ★ 4.2 (1427)

86258 Beier Route

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/24"
)
propertie = res.json()
{
  "id": 24,
  "name": "Kirlinfurt Apartment",
  "slug": "kirlinfurt-apartment-24",
  "type": "apartment",
  "countryAlpha2": "BE",
  "city": "Kirlinfurt",
  "address": "86258 Beier Route",
  "latitude": 47.155305,
  "longitude": 128.987341,
  "bedrooms": 6,
  "bathrooms": 3.5,
  "maxGuests": 5,
  "pricePerNight": 802.4,
  "currency": "EUR",
  "rating": 4.2,
  "ratingCount": 1427,
  "hostUserId": 97,
  "createdAt": "2025-12-26T20:06:15.823Z",
  "updatedAt": "2026-03-15T16:26:41.158Z"
}
Draftbit