South Kalebcester Villa
villa · South Kalebcester · $1072.3/night · ★ 4.8 (823)
853 Garrison Walk
Overview
properties / #31
villa · South Kalebcester · $1072.3/night · ★ 4.8 (823)
853 Garrison Walk
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/31" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/31" ); 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/31"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/31"
)
propertie = res.json() Response
{
"id": 31,
"name": "South Kalebcester Villa",
"slug": "south-kalebcester-villa-31",
"type": "villa",
"countryAlpha2": "AU",
"city": "South Kalebcester",
"address": "853 Garrison Walk",
"latitude": 33.993694,
"longitude": 9.827669,
"bedrooms": 0,
"bathrooms": 3.5,
"maxGuests": 1,
"pricePerNight": 1072.3,
"currency": "SGD",
"rating": 4.8,
"ratingCount": 823,
"hostUserId": 93,
"createdAt": "2024-08-22T07:00:32.948Z",
"updatedAt": "2025-08-27T21:53:09.724Z"
}