Kihnworth Villa
villa · Kihnworth · $991.37/night · ★ 3.9 (715)
459 Fisher Court
Overview
properties / #140
villa · Kihnworth · $991.37/night · ★ 3.9 (715)
459 Fisher Court
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/140" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/140" ); 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/140"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/140"
)
propertie = res.json() Response
{
"id": 140,
"name": "Kihnworth Villa",
"slug": "kihnworth-villa-140",
"type": "villa",
"countryAlpha2": "PL",
"city": "Kihnworth",
"address": "459 Fisher Court",
"latitude": 14.331279,
"longitude": -92.841624,
"bedrooms": 6,
"bathrooms": 4,
"maxGuests": 3,
"pricePerNight": 991.37,
"currency": "JPY",
"rating": 3.9,
"ratingCount": 715,
"hostUserId": 229,
"createdAt": "2025-12-04T04:56:22.680Z",
"updatedAt": "2026-04-18T12:09:32.494Z"
}