Tylerberg Cabin
cabin · Tylerberg · $354.37/night · ★ 3.1 (1359)
954 Nelson Street
properties / #10
cabin · Tylerberg · $354.37/night · ★ 3.1 (1359)
954 Nelson Street
curl -sS \
"https://example-data.com/api/v1/properties/10" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/10"
);
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/10"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/10"
)
propertie = res.json() {
"id": 10,
"name": "Tylerberg Cabin",
"slug": "tylerberg-cabin-10",
"type": "cabin",
"countryAlpha2": "AR",
"city": "Tylerberg",
"address": "954 Nelson Street",
"latitude": 10.541907,
"longitude": 127.766113,
"bedrooms": 0,
"bathrooms": 0.5,
"maxGuests": 1,
"pricePerNight": 354.37,
"currency": "SGD",
"rating": 3.1,
"ratingCount": 1359,
"hostUserId": 67,
"createdAt": "2026-01-12T18:45:14.302Z",
"updatedAt": "2026-04-18T01:30:08.250Z"
}