Clovis Condo
condo · Clovis · $1446.36/night · ★ 2.9 (1540)
472 Dicki Field
properties / #57
condo · Clovis · $1446.36/night · ★ 2.9 (1540)
472 Dicki Field
curl -sS \
"https://example-data.com/api/v1/properties/57" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/57"
);
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/57"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/57"
)
propertie = res.json() {
"id": 57,
"name": "Clovis Condo",
"slug": "clovis-condo-57",
"type": "condo",
"countryAlpha2": "AU",
"city": "Clovis",
"address": "472 Dicki Field",
"latitude": -16.708092,
"longitude": -122.36235,
"bedrooms": 6,
"bathrooms": 2,
"maxGuests": 8,
"pricePerNight": 1446.36,
"currency": "CAD",
"rating": 2.9,
"ratingCount": 1540,
"hostUserId": 183,
"createdAt": "2025-12-11T23:21:36.678Z",
"updatedAt": "2026-01-11T11:04:43.440Z"
}