Kreigerfurt Condo
condo · Kreigerfurt · $1182.89/night · ★ 3.7 (1356)
6893 St George's Road
properties / #96
condo · Kreigerfurt · $1182.89/night · ★ 3.7 (1356)
6893 St George's Road
curl -sS \
"https://example-data.com/api/v1/properties/96" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/96"
);
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/96"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/96"
)
propertie = res.json() {
"id": 96,
"name": "Kreigerfurt Condo",
"slug": "kreigerfurt-condo-96",
"type": "condo",
"countryAlpha2": "MA",
"city": "Kreigerfurt",
"address": "6893 St George's Road",
"latitude": -28.998241,
"longitude": 154.704498,
"bedrooms": 3,
"bathrooms": 3.5,
"maxGuests": 6,
"pricePerNight": 1182.89,
"currency": "MXN",
"rating": 3.7,
"ratingCount": 1356,
"hostUserId": 13,
"createdAt": "2024-06-20T17:21:33.783Z",
"updatedAt": "2026-04-29T23:26:01.444Z"
}