North Randalview Cabin
cabin · North Randalview · $452.72/night · ★ 3.1 (1221)
2803 Cartwright Islands
properties / #78
cabin · North Randalview · $452.72/night · ★ 3.1 (1221)
2803 Cartwright Islands
curl -sS \
"https://example-data.com/api/v1/properties/78" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/properties/78"
);
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/78"
);
const propertie = (await res.json()) as Propertie;import requests
res = requests.get(
"https://example-data.com/api/v1/properties/78"
)
propertie = res.json() {
"id": 78,
"name": "North Randalview Cabin",
"slug": "north-randalview-cabin-78",
"type": "cabin",
"countryAlpha2": "CL",
"city": "North Randalview",
"address": "2803 Cartwright Islands",
"latitude": -19.308617,
"longitude": 25.413006,
"bedrooms": 2,
"bathrooms": 2.5,
"maxGuests": 5,
"pricePerNight": 452.72,
"currency": "MXN",
"rating": 3.1,
"ratingCount": 1221,
"hostUserId": 159,
"createdAt": "2024-10-11T14:44:37.806Z",
"updatedAt": "2024-12-21T05:44:04.535Z"
}