New Terrillfurt Condo
condo · New Terrillfurt · $89.22/night · ★ 5.0 (1729)
56689 Jacobs Ranch
properties / #46
condo · New Terrillfurt · $89.22/night · ★ 5.0 (1729)
56689 Jacobs Ranch
curl -sS \
"https://example-data.com/api/v1/properties/46" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/46"
);
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/46"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/46"
)
propertie = res.json() {
"id": 46,
"name": "New Terrillfurt Condo",
"slug": "new-terrillfurt-condo-46",
"type": "condo",
"countryAlpha2": "NZ",
"city": "New Terrillfurt",
"address": "56689 Jacobs Ranch",
"latitude": 12.977994,
"longitude": -127.875706,
"bedrooms": 1,
"bathrooms": 3.5,
"maxGuests": 4,
"pricePerNight": 89.22,
"currency": "AED",
"rating": 5,
"ratingCount": 1729,
"hostUserId": 120,
"createdAt": "2025-03-22T09:20:40.101Z",
"updatedAt": "2025-09-02T16:50:00.723Z"
}