Funkland Villa
villa · Funkland · $84.16/night · ★ 4.0 (1012)
57380 Elias Road
properties / #106
villa · Funkland · $84.16/night · ★ 4.0 (1012)
57380 Elias Road
curl -sS \
"https://example-data.com/api/v1/properties/106" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/106"
);
const propertie = await res.json();import type { Propertie } from "https://example-data.com/types/properties.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/properties/106"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/106"
)
propertie = res.json() {
"id": 106,
"name": "Funkland Villa",
"slug": "funkland-villa-106",
"type": "villa",
"countryAlpha2": "CH",
"city": "Funkland",
"address": "57380 Elias Road",
"latitude": 13.238822,
"longitude": -74.27676,
"bedrooms": 4,
"bathrooms": 2.5,
"maxGuests": 8,
"pricePerNight": 84.16,
"currency": "EUR",
"rating": 4,
"ratingCount": 1012,
"hostUserId": 128,
"createdAt": "2025-12-07T11:11:04.140Z",
"updatedAt": "2026-01-07T17:40:02.949Z"
}