Funkland Villa
villa · Funkland · $84.16/night · ★ 4.0 (1012)
57380 Elias Road
Overview
properties / #106
villa · Funkland · $84.16/night · ★ 4.0 (1012)
57380 Elias Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/106" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/106" ); 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/106"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/106"
)
propertie = res.json() Response
{
"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"
}