Fort Malcolmworth Villa
villa · Fort Malcolmworth · $1429.97/night · ★ 4.8 (382)
5987 Katrina Coves
Overview
properties / #172
villa · Fort Malcolmworth · $1429.97/night · ★ 4.8 (382)
5987 Katrina Coves
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/172" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/172" ); 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/172"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/172"
)
propertie = res.json() Response
{
"id": 172,
"name": "Fort Malcolmworth Villa",
"slug": "fort-malcolmworth-villa-172",
"type": "villa",
"countryAlpha2": "KR",
"city": "Fort Malcolmworth",
"address": "5987 Katrina Coves",
"latitude": 36.655355,
"longitude": 119.509279,
"bedrooms": 2,
"bathrooms": 2.5,
"maxGuests": 1,
"pricePerNight": 1429.97,
"currency": "USD",
"rating": 4.8,
"ratingCount": 382,
"hostUserId": 167,
"createdAt": "2025-04-07T05:39:05.389Z",
"updatedAt": "2026-03-25T03:29:01.146Z"
}