Lake Vincent Villa
villa · Lake Vincent · $1053.36/night · ★ 3.9 (348)
35888 Sipes Hill
Overview
properties / #173
villa · Lake Vincent · $1053.36/night · ★ 3.9 (348)
35888 Sipes Hill
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/173" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/173" ); 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/173"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/173"
)
propertie = res.json() Response
{
"id": 173,
"name": "Lake Vincent Villa",
"slug": "lake-vincent-villa-173",
"type": "villa",
"countryAlpha2": "NG",
"city": "Lake Vincent",
"address": "35888 Sipes Hill",
"latitude": 3.40643,
"longitude": 23.251033,
"bedrooms": 6,
"bathrooms": 4,
"maxGuests": 12,
"pricePerNight": 1053.36,
"currency": "BRL",
"rating": 3.9,
"ratingCount": 348,
"hostUserId": 217,
"createdAt": "2025-09-29T22:41:34.761Z",
"updatedAt": "2026-04-04T08:46:49.931Z"
}