example-data.com

properties / #144

Alphonsofield Condo

condo · Alphonsofield · $901.51/night · ★ 2.5 (327)

75008 Emil Spurs

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/144"
)
propertie = res.json()
{
  "id": 144,
  "name": "Alphonsofield Condo",
  "slug": "alphonsofield-condo-144",
  "type": "condo",
  "countryAlpha2": "NL",
  "city": "Alphonsofield",
  "address": "75008 Emil Spurs",
  "latitude": -43.357482,
  "longitude": 38.955516,
  "bedrooms": 4,
  "bathrooms": 0.5,
  "maxGuests": 2,
  "pricePerNight": 901.51,
  "currency": "AUD",
  "rating": 2.5,
  "ratingCount": 327,
  "hostUserId": 30,
  "createdAt": "2025-03-23T03:25:35.540Z",
  "updatedAt": "2025-07-27T07:09:04.383Z"
}
Draftbit