Durganton Villa
villa · Durganton · $929.26/night · ★ 3.6 (92)
102 Zora Fort
Overview
properties / #13
villa · Durganton · $929.26/night · ★ 3.6 (92)
102 Zora Fort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/13" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/13" ); 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/13"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/13"
)
propertie = res.json() Response
{
"id": 13,
"name": "Durganton Villa",
"slug": "durganton-villa-13",
"type": "villa",
"countryAlpha2": "IN",
"city": "Durganton",
"address": "102 Zora Fort",
"latitude": 25.75433,
"longitude": -37.741874,
"bedrooms": 4,
"bathrooms": 3,
"maxGuests": 5,
"pricePerNight": 929.26,
"currency": "SGD",
"rating": 3.6,
"ratingCount": 92,
"hostUserId": 158,
"createdAt": "2026-04-30T06:25:43.996Z",
"updatedAt": "2026-05-13T03:38:25.514Z"
}