Lake Alainafort Cabin
cabin · Lake Alainafort · $480.2/night · ★ 2.9 (988)
785 Cross Street
properties / #11
cabin · Lake Alainafort · $480.2/night · ★ 2.9 (988)
785 Cross Street
curl -sS \
"https://example-data.com/api/v1/properties/11" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/11"
);
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/11"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/11"
)
propertie = res.json() {
"id": 11,
"name": "Lake Alainafort Cabin",
"slug": "lake-alainafort-cabin-11",
"type": "cabin",
"countryAlpha2": "JP",
"city": "Lake Alainafort",
"address": "785 Cross Street",
"latitude": 55.951336,
"longitude": 18.163942,
"bedrooms": 1,
"bathrooms": 2.5,
"maxGuests": 4,
"pricePerNight": 480.2,
"currency": "GBP",
"rating": 2.9,
"ratingCount": 988,
"hostUserId": 106,
"createdAt": "2025-02-06T03:12:01.093Z",
"updatedAt": "2026-04-16T07:42:29.987Z"
}