New Deontaestad Condo
condo · New Deontaestad · $349.51/night · ★ 3.2 (126)
3341 Darion Village
properties / #185
condo · New Deontaestad · $349.51/night · ★ 3.2 (126)
3341 Darion Village
curl -sS \
"https://example-data.com/api/v1/properties/185" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/185"
);
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/185"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/185"
)
propertie = res.json() {
"id": 185,
"name": "New Deontaestad Condo",
"slug": "new-deontaestad-condo-185",
"type": "condo",
"countryAlpha2": "PE",
"city": "New Deontaestad",
"address": "3341 Darion Village",
"latitude": 39.902572,
"longitude": -47.704652,
"bedrooms": 2,
"bathrooms": 3.5,
"maxGuests": 1,
"pricePerNight": 349.51,
"currency": "AUD",
"rating": 3.2,
"ratingCount": 126,
"hostUserId": 134,
"createdAt": "2025-10-23T07:52:09.046Z",
"updatedAt": "2025-12-23T12:40:37.839Z"
}