Zemlakchester Villa
villa · Zemlakchester · $261.23/night · ★ 3.0 (1086)
9878 Deckow Fort
Overview
properties / #17
villa · Zemlakchester · $261.23/night · ★ 3.0 (1086)
9878 Deckow Fort
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/17" ); 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/17"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/17"
)
propertie = res.json() Response
{
"id": 17,
"name": "Zemlakchester Villa",
"slug": "zemlakchester-villa-17",
"type": "villa",
"countryAlpha2": "IL",
"city": "Zemlakchester",
"address": "9878 Deckow Fort",
"latitude": -53.796599,
"longitude": -27.342615,
"bedrooms": 3,
"bathrooms": 4,
"maxGuests": 3,
"pricePerNight": 261.23,
"currency": "EUR",
"rating": 3,
"ratingCount": 1086,
"hostUserId": 165,
"createdAt": "2025-02-20T13:19:27.626Z",
"updatedAt": "2025-09-09T02:33:29.204Z"
}