New Deontaestad Condo
condo · New Deontaestad · $349.51/night · ★ 3.2 (126)
3341 Darion Village
Overview
properties / #185
condo · New Deontaestad · $349.51/night · ★ 3.2 (126)
3341 Darion Village
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/185" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/185" ); const property = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property } from "./types/properties";
const res = await fetch(
"https://example-data.com/api/v1/properties/185"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/185"
)
propertie = res.json() Response
{
"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"
}