Liaview Cabin
cabin · Liaview · $1445.7/night · ★ 4.2 (1703)
4460 Willow Street
Overview
properties / #91
cabin · Liaview · $1445.7/night · ★ 4.2 (1703)
4460 Willow Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/91" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/91" ); 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/91"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/91"
)
propertie = res.json() Response
{
"id": 91,
"name": "Liaview Cabin",
"slug": "liaview-cabin-91",
"type": "cabin",
"countryAlpha2": "PE",
"city": "Liaview",
"address": "4460 Willow Street",
"latitude": -2.127292,
"longitude": -102.496213,
"bedrooms": 3,
"bathrooms": 1,
"maxGuests": 1,
"pricePerNight": 1445.7,
"currency": "BRL",
"rating": 4.2,
"ratingCount": 1703,
"hostUserId": 66,
"createdAt": "2025-10-08T09:53:29.983Z",
"updatedAt": "2025-10-27T07:23:43.391Z"
}