New Luzworth Villa
villa · New Luzworth · $331.36/night · ★ 3.0 (1193)
265 Water Lane
Overview
properties / #111
villa · New Luzworth · $331.36/night · ★ 3.0 (1193)
265 Water Lane
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/111" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/111" ); 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/111"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/111"
)
propertie = res.json() Response
{
"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"
}