Port Merrittport Loft
loft · Port Merrittport · $1182.45/night · ★ 4.9 (1380)
155 The Copse
properties / #113
loft · Port Merrittport · $1182.45/night · ★ 4.9 (1380)
155 The Copse
curl -sS \
"https://example-data.com/api/v1/properties/113" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/113"
);
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/113"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/113"
)
propertie = res.json() {
"id": 113,
"name": "Port Merrittport Loft",
"slug": "port-merrittport-loft-113",
"type": "loft",
"countryAlpha2": "CO",
"city": "Port Merrittport",
"address": "155 The Copse",
"latitude": 16.106526,
"longitude": -169.806756,
"bedrooms": 5,
"bathrooms": 3,
"maxGuests": 4,
"pricePerNight": 1182.45,
"currency": "JPY",
"rating": 4.9,
"ratingCount": 1380,
"hostUserId": 7,
"createdAt": "2025-06-28T06:56:41.800Z",
"updatedAt": "2025-12-07T06:30:53.699Z"
}