Wiegandland Villa
villa · Wiegandland · $1103.1/night · ★ 3.7 (811)
67704 Abbey Road
Overview
properties / #157
villa · Wiegandland · $1103.1/night · ★ 3.7 (811)
67704 Abbey Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/157" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/157" ); 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/157"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/157"
)
propertie = res.json() Response
{
"id": 157,
"name": "Wiegandland Villa",
"slug": "wiegandland-villa-157",
"type": "villa",
"countryAlpha2": "IN",
"city": "Wiegandland",
"address": "67704 Abbey Road",
"latitude": -15.274488,
"longitude": -26.918979,
"bedrooms": 3,
"bathrooms": 4,
"maxGuests": 7,
"pricePerNight": 1103.1,
"currency": "AUD",
"rating": 3.7,
"ratingCount": 811,
"hostUserId": 213,
"createdAt": "2025-07-28T07:09:06.463Z",
"updatedAt": "2026-03-03T14:24:54.251Z"
}