Kautzercester Condo
condo · Kautzercester · $288.98/night · ★ 4.5 (1715)
99666 Francesca Shoals
Overview
properties / #143
condo · Kautzercester · $288.98/night · ★ 4.5 (1715)
99666 Francesca Shoals
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/143" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/143" ); 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/143"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/143"
)
propertie = res.json() Response
{
"id": 143,
"name": "Kautzercester Condo",
"slug": "kautzercester-condo-143",
"type": "condo",
"countryAlpha2": "MX",
"city": "Kautzercester",
"address": "99666 Francesca Shoals",
"latitude": 53.12053,
"longitude": 62.429121,
"bedrooms": 6,
"bathrooms": 2,
"maxGuests": 5,
"pricePerNight": 288.98,
"currency": "GBP",
"rating": 4.5,
"ratingCount": 1715,
"hostUserId": 114,
"createdAt": "2026-01-02T22:32:59.944Z",
"updatedAt": "2026-02-04T23:35:00.451Z"
}