Tylerberg Cabin
cabin · Tylerberg · $354.37/night · ★ 3.1 (1359)
954 Nelson Street
Overview
properties / #10
cabin · Tylerberg · $354.37/night · ★ 3.1 (1359)
954 Nelson Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/10" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/10" ); 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/10"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/10"
)
propertie = res.json() Response
{
"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"
}