example-data.com

properties / #26

Joannyburgh House

house · Joannyburgh · $1208.86/night · ★ 4.5 (1281)

3221 Lueilwitz Rue

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/26"
)
propertie = res.json()
{
  "id": 26,
  "name": "Joannyburgh House",
  "slug": "joannyburgh-house-26",
  "type": "house",
  "countryAlpha2": "BE",
  "city": "Joannyburgh",
  "address": "3221 Lueilwitz Rue",
  "latitude": -32.106351,
  "longitude": -103.474961,
  "bedrooms": 4,
  "bathrooms": 4,
  "maxGuests": 7,
  "pricePerNight": 1208.86,
  "currency": "JPY",
  "rating": 4.5,
  "ratingCount": 1281,
  "hostUserId": 193,
  "createdAt": "2025-11-23T06:54:50.345Z",
  "updatedAt": "2026-01-17T14:41:21.615Z"
}
Draftbit