Suzannehaven Villa
villa · Suzannehaven · $990.95/night · ★ 3.7 (1621)
1339 Macejkovic Burg
Overview
properties / #137
villa · Suzannehaven · $990.95/night · ★ 3.7 (1621)
1339 Macejkovic Burg
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/137" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/137" ); 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/137"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/137"
)
propertie = res.json() Response
{
"id": 137,
"name": "Suzannehaven Villa",
"slug": "suzannehaven-villa-137",
"type": "villa",
"countryAlpha2": "GB",
"city": "Suzannehaven",
"address": "1339 Macejkovic Burg",
"latitude": 51.243556,
"longitude": -32.516214,
"bedrooms": 5,
"bathrooms": 3.5,
"maxGuests": 10,
"pricePerNight": 990.95,
"currency": "MXN",
"rating": 3.7,
"ratingCount": 1621,
"hostUserId": 192,
"createdAt": "2026-02-07T05:19:25.167Z",
"updatedAt": "2026-03-08T18:01:15.249Z"
}