example-data.com

properties / #95

Fort River Apartment

apartment · Fort River · $857.28/night · ★ 4.4 (1854)

696 Willy Key

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/95"
)
propertie = res.json()
{
  "id": 95,
  "name": "Fort River Apartment",
  "slug": "fort-river-apartment-95",
  "type": "apartment",
  "countryAlpha2": "NZ",
  "city": "Fort River",
  "address": "696 Willy Key",
  "latitude": -43.316788,
  "longitude": 149.955539,
  "bedrooms": 1,
  "bathrooms": 3.5,
  "maxGuests": 1,
  "pricePerNight": 857.28,
  "currency": "USD",
  "rating": 4.4,
  "ratingCount": 1854,
  "hostUserId": 112,
  "createdAt": "2025-08-03T08:03:59.677Z",
  "updatedAt": "2025-08-12T00:46:49.890Z"
}
Draftbit