South Lilian Villa
villa · South Lilian · $1487.67/night · ★ 4.3 (1457)
1694 Little Knolls
Overview
properties / #149
villa · South Lilian · $1487.67/night · ★ 4.3 (1457)
1694 Little Knolls
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/149" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/149" ); 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/149"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/149"
)
propertie = res.json() Response
{
"id": 149,
"name": "South Lilian Villa",
"slug": "south-lilian-villa-149",
"type": "villa",
"countryAlpha2": "AE",
"city": "South Lilian",
"address": "1694 Little Knolls",
"latitude": -45.681441,
"longitude": 44.07217,
"bedrooms": 2,
"bathrooms": 1.5,
"maxGuests": 4,
"pricePerNight": 1487.67,
"currency": "BRL",
"rating": 4.3,
"ratingCount": 1457,
"hostUserId": 237,
"createdAt": "2025-05-09T14:04:58.794Z",
"updatedAt": "2025-05-23T11:42:06.738Z"
}