Lake Lionel Condo
condo · Lake Lionel · $69.82/night · ★ 4.2 (1590)
37436 Brookside
Overview
properties / #67
condo · Lake Lionel · $69.82/night · ★ 4.2 (1590)
37436 Brookside
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/67" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/67" ); 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/67"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/67"
)
propertie = res.json() Response
{
"id": 67,
"name": "Lake Lionel Condo",
"slug": "lake-lionel-condo-67",
"type": "condo",
"countryAlpha2": "KR",
"city": "Lake Lionel",
"address": "37436 Brookside",
"latitude": 48.288205,
"longitude": -100.837843,
"bedrooms": 3,
"bathrooms": 4,
"maxGuests": 4,
"pricePerNight": 69.82,
"currency": "BRL",
"rating": 4.2,
"ratingCount": 1590,
"hostUserId": 163,
"createdAt": "2025-07-21T16:13:33.242Z",
"updatedAt": "2025-08-22T07:59:02.464Z"
}