North Randalview Cabin
cabin · North Randalview · $452.72/night · ★ 3.1 (1221)
2803 Cartwright Islands
Overview
properties / #78
cabin · North Randalview · $452.72/night · ★ 3.1 (1221)
2803 Cartwright Islands
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/78" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/78" ); const property = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property } from "./types/properties";
const res = await fetch(
"https://example-data.com/api/v1/properties/78"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/78"
)
propertie = res.json() Response
{
"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"
}