South Tristonview Villa
villa · South Tristonview · $1205.7/night · ★ 4.7 (855)
266 Fritsch Lake
Overview
properties / #70
villa · South Tristonview · $1205.7/night · ★ 4.7 (855)
266 Fritsch Lake
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/70" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/70" ); 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/70"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/70"
)
propertie = res.json() Response
{
"id": 70,
"name": "South Tristonview Villa",
"slug": "south-tristonview-villa-70",
"type": "villa",
"countryAlpha2": "IS",
"city": "South Tristonview",
"address": "266 Fritsch Lake",
"latitude": -9.544052,
"longitude": 95.841691,
"bedrooms": 0,
"bathrooms": 0.5,
"maxGuests": 1,
"pricePerNight": 1205.7,
"currency": "EUR",
"rating": 4.7,
"ratingCount": 855,
"hostUserId": 100,
"createdAt": "2024-10-13T08:55:25.064Z",
"updatedAt": "2025-04-27T08:52:33.874Z"
}