West Hillardhaven Villa
villa · West Hillardhaven · $1261.59/night · ★ 3.8 (391)
650 Lurline Causeway
Overview
properties / #62
villa · West Hillardhaven · $1261.59/night · ★ 3.8 (391)
650 Lurline Causeway
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/62" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/62" ); 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/62"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/62"
)
propertie = res.json() Response
{
"id": 62,
"name": "West Hillardhaven Villa",
"slug": "west-hillardhaven-villa-62",
"type": "villa",
"countryAlpha2": "EG",
"city": "West Hillardhaven",
"address": "650 Lurline Causeway",
"latitude": -23.934488,
"longitude": 39.55414,
"bedrooms": 6,
"bathrooms": 1.5,
"maxGuests": 9,
"pricePerNight": 1261.59,
"currency": "SGD",
"rating": 3.8,
"ratingCount": 391,
"hostUserId": 54,
"createdAt": "2026-02-06T08:56:18.352Z",
"updatedAt": "2026-05-01T14:29:35.383Z"
}