Kirlinfurt Apartment
apartment · Kirlinfurt · $802.4/night · ★ 4.2 (1427)
86258 Beier Route
Overview
properties / #24
apartment · Kirlinfurt · $802.4/night · ★ 4.2 (1427)
86258 Beier Route
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/24" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/24" ); 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/24"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/24"
)
propertie = res.json() Response
{
"id": 24,
"name": "Kirlinfurt Apartment",
"slug": "kirlinfurt-apartment-24",
"type": "apartment",
"countryAlpha2": "BE",
"city": "Kirlinfurt",
"address": "86258 Beier Route",
"latitude": 47.155305,
"longitude": 128.987341,
"bedrooms": 6,
"bathrooms": 3.5,
"maxGuests": 5,
"pricePerNight": 802.4,
"currency": "EUR",
"rating": 4.2,
"ratingCount": 1427,
"hostUserId": 97,
"createdAt": "2025-12-26T20:06:15.823Z",
"updatedAt": "2026-03-15T16:26:41.158Z"
}