example-data.com

properties / #145

Centennial Condo

condo · Centennial · $1388.14/night · ★ 3.5 (255)

8725 Mosciski Plain

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/145"
)
propertie = res.json()
{
  "id": 145,
  "name": "Centennial Condo",
  "slug": "centennial-condo-145",
  "type": "condo",
  "countryAlpha2": "CA",
  "city": "Centennial",
  "address": "8725 Mosciski Plain",
  "latitude": 46.610938,
  "longitude": 32.53061,
  "bedrooms": 1,
  "bathrooms": 1,
  "maxGuests": 4,
  "pricePerNight": 1388.14,
  "currency": "BRL",
  "rating": 3.5,
  "ratingCount": 255,
  "hostUserId": 103,
  "createdAt": "2025-07-07T11:05:56.114Z",
  "updatedAt": "2025-12-16T03:53:15.352Z"
}
Draftbit