Port Geovanychester Condo
condo · Port Geovanychester · $523.98/night · ★ 3.3 (277)
55213 Asia Shores
properties / #139
condo · Port Geovanychester · $523.98/night · ★ 3.3 (277)
55213 Asia Shores
curl -sS \
"https://example-data.com/api/v1/properties/139" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/139"
);
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/139"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/139"
)
propertie = res.json() {
"id": 139,
"name": "Port Geovanychester Condo",
"slug": "port-geovanychester-condo-139",
"type": "condo",
"countryAlpha2": "VN",
"city": "Port Geovanychester",
"address": "55213 Asia Shores",
"latitude": -23.175059,
"longitude": 37.076244,
"bedrooms": 1,
"bathrooms": 0.5,
"maxGuests": 1,
"pricePerNight": 523.98,
"currency": "JPY",
"rating": 3.3,
"ratingCount": 277,
"hostUserId": 194,
"createdAt": "2025-03-30T11:40:14.347Z",
"updatedAt": "2025-07-27T19:40:30.270Z"
}