example-data.com

properties / #155

New Cassie Apartment

apartment · New Cassie · $592.91/night · ★ 4.9 (1496)

71843 Williamson Parkways

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/155"
)
propertie = res.json()
{
  "id": 155,
  "name": "New Cassie Apartment",
  "slug": "new-cassie-apartment-155",
  "type": "apartment",
  "countryAlpha2": "US",
  "city": "New Cassie",
  "address": "71843 Williamson Parkways",
  "latitude": 54.829549,
  "longitude": 97.416141,
  "bedrooms": 1,
  "bathrooms": 2,
  "maxGuests": 3,
  "pricePerNight": 592.91,
  "currency": "CAD",
  "rating": 4.9,
  "ratingCount": 1496,
  "hostUserId": 226,
  "createdAt": "2026-01-18T04:37:57.101Z",
  "updatedAt": "2026-04-06T18:04:12.844Z"
}
Draftbit