example-data.com

properties / #32

Fort Darenfort Condo

condo · Fort Darenfort · $1332.17/night · ★ 3.4 (1128)

551 Kailyn Corners

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/32"
)
propertie = res.json()
{
  "id": 32,
  "name": "Fort Darenfort Condo",
  "slug": "fort-darenfort-condo-32",
  "type": "condo",
  "countryAlpha2": "SA",
  "city": "Fort Darenfort",
  "address": "551 Kailyn Corners",
  "latitude": 59.439767,
  "longitude": 87.951831,
  "bedrooms": 3,
  "bathrooms": 0.5,
  "maxGuests": 3,
  "pricePerNight": 1332.17,
  "currency": "SGD",
  "rating": 3.4,
  "ratingCount": 1128,
  "hostUserId": 208,
  "createdAt": "2024-10-06T04:38:31.131Z",
  "updatedAt": "2025-04-10T17:01:08.719Z"
}
Draftbit