New Luzworth Villa
villa · New Luzworth · $331.36/night · ★ 3.0 (1193)
265 Water Lane
properties / #111
villa · New Luzworth · $331.36/night · ★ 3.0 (1193)
265 Water Lane
curl -sS \
"https://example-data.com/api/v1/properties/111" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/111"
);
const propertie = await res.json();import type { Propertie } from "https://example-data.com/types/properties.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/properties/111"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/111"
)
propertie = res.json() {
"id": 111,
"name": "New Luzworth Villa",
"slug": "new-luzworth-villa-111",
"type": "villa",
"countryAlpha2": "SG",
"city": "New Luzworth",
"address": "265 Water Lane",
"latitude": -44.784843,
"longitude": 1.90943,
"bedrooms": 3,
"bathrooms": 2.5,
"maxGuests": 2,
"pricePerNight": 331.36,
"currency": "USD",
"rating": 3,
"ratingCount": 1193,
"hostUserId": 74,
"createdAt": "2025-01-04T21:10:55.990Z",
"updatedAt": "2025-09-10T02:09:35.170Z"
}