Raquelburgh Villa
villa · Raquelburgh · $118.08/night · ★ 3.3 (453)
497 Locust Street
properties / #33
villa · Raquelburgh · $118.08/night · ★ 3.3 (453)
497 Locust Street
curl -sS \
"https://example-data.com/api/v1/properties/33" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/33"
);
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/33"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/33"
)
propertie = res.json() {
"id": 33,
"name": "Raquelburgh Villa",
"slug": "raquelburgh-villa-33",
"type": "villa",
"countryAlpha2": "PT",
"city": "Raquelburgh",
"address": "497 Locust Street",
"latitude": 14.111661,
"longitude": -67.316535,
"bedrooms": 1,
"bathrooms": 3,
"maxGuests": 4,
"pricePerNight": 118.08,
"currency": "AUD",
"rating": 3.3,
"ratingCount": 453,
"hostUserId": 17,
"createdAt": "2025-11-18T15:47:13.871Z",
"updatedAt": "2026-04-04T04:10:04.534Z"
}