Raquelburgh Villa
villa · Raquelburgh · $118.08/night · ★ 3.3 (453)
497 Locust Street
Overview
properties / #33
villa · Raquelburgh · $118.08/night · ★ 3.3 (453)
497 Locust Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/33" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/33" ); 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/33"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/33"
)
propertie = res.json() Response
{
"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"
}