Hanford Loft
loft · Hanford · $179.9/night · ★ 5.0 (915)
87853 W 9th Street
properties / #23
loft · Hanford · $179.9/night · ★ 5.0 (915)
87853 W 9th Street
curl -sS \
"https://example-data.com/api/v1/properties/23" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/23"
);
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/23"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/23"
)
propertie = res.json() {
"id": 23,
"name": "Hanford Loft",
"slug": "hanford-loft-23",
"type": "loft",
"countryAlpha2": "SG",
"city": "Hanford",
"address": "87853 W 9th Street",
"latitude": -25.642083,
"longitude": 96.312256,
"bedrooms": 4,
"bathrooms": 2.5,
"maxGuests": 2,
"pricePerNight": 179.9,
"currency": "AED",
"rating": 5,
"ratingCount": 915,
"hostUserId": 124,
"createdAt": "2024-08-04T13:57:16.899Z",
"updatedAt": "2026-03-19T17:31:27.583Z"
}