Kuhicberg Villa
villa · Kuhicberg · $1294.26/night · ★ 3.3 (1752)
2767 Schultz Junction
Overview
properties / #22
villa · Kuhicberg · $1294.26/night · ★ 3.3 (1752)
2767 Schultz Junction
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/22" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/22" ); 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/22"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/22"
)
propertie = res.json() Response
{
"id": 22,
"name": "Kuhicberg Villa",
"slug": "kuhicberg-villa-22",
"type": "villa",
"countryAlpha2": "PH",
"city": "Kuhicberg",
"address": "2767 Schultz Junction",
"latitude": -0.549794,
"longitude": 17.165406,
"bedrooms": 2,
"bathrooms": 2,
"maxGuests": 5,
"pricePerNight": 1294.26,
"currency": "MXN",
"rating": 3.3,
"ratingCount": 1752,
"hostUserId": 63,
"createdAt": "2026-03-10T06:23:21.228Z",
"updatedAt": "2026-05-10T14:02:39.011Z"
}