example-data.com

properties / #161

South June Condo

condo · South June · $1068.99/night · ★ 3.8 (474)

9552 Reichert Fall

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/161"
)
propertie = res.json()
{
  "id": 161,
  "name": "South June Condo",
  "slug": "south-june-condo-161",
  "type": "condo",
  "countryAlpha2": "BE",
  "city": "South June",
  "address": "9552 Reichert Fall",
  "latitude": -24.121453,
  "longitude": 83.444908,
  "bedrooms": 3,
  "bathrooms": 2.5,
  "maxGuests": 4,
  "pricePerNight": 1068.99,
  "currency": "EUR",
  "rating": 3.8,
  "ratingCount": 474,
  "hostUserId": 34,
  "createdAt": "2025-12-02T13:46:02.067Z",
  "updatedAt": "2026-02-05T21:30:23.063Z"
}
Draftbit