Lake Abdullah Villa
villa · Lake Abdullah · $741.2/night · ★ 4.6 (782)
9655 Kelvin Place
Overview
properties / #87
villa · Lake Abdullah · $741.2/night · ★ 4.6 (782)
9655 Kelvin Place
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/87" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/87" ); 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/87"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/87"
)
propertie = res.json() Response
{
"id": 87,
"name": "Lake Abdullah Villa",
"slug": "lake-abdullah-villa-87",
"type": "villa",
"countryAlpha2": "MX",
"city": "Lake Abdullah",
"address": "9655 Kelvin Place",
"latitude": -52.373937,
"longitude": -143.448554,
"bedrooms": 4,
"bathrooms": 2,
"maxGuests": 7,
"pricePerNight": 741.2,
"currency": "SGD",
"rating": 4.6,
"ratingCount": 782,
"hostUserId": 14,
"createdAt": "2025-11-16T10:24:45.841Z",
"updatedAt": "2026-02-17T09:43:47.767Z"
}