North Josue Loft
loft · North Josue · $361.31/night · ★ 4.9 (401)
70044 Hammes Tunnel
properties / #35
loft · North Josue · $361.31/night · ★ 4.9 (401)
70044 Hammes Tunnel
curl -sS \
"https://example-data.com/api/v1/properties/35" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/35"
);
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/35"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/35"
)
propertie = res.json() {
"id": 35,
"name": "North Josue Loft",
"slug": "north-josue-loft-35",
"type": "loft",
"countryAlpha2": "DK",
"city": "North Josue",
"address": "70044 Hammes Tunnel",
"latitude": 42.427265,
"longitude": 171.903785,
"bedrooms": 1,
"bathrooms": 3.5,
"maxGuests": 4,
"pricePerNight": 361.31,
"currency": "SGD",
"rating": 4.9,
"ratingCount": 401,
"hostUserId": 167,
"createdAt": "2024-12-19T04:42:51.580Z",
"updatedAt": "2026-01-31T12:35:41.011Z"
}