Howeton Cabin
cabin · Howeton · $842.37/night · ★ 3.3 (1307)
1831 Della Inlet
Overview
properties / #101
cabin · Howeton · $842.37/night · ★ 3.3 (1307)
1831 Della Inlet
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/101" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/101" ); 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/101"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/101"
)
propertie = res.json() Response
{
"id": 101,
"name": "Howeton Cabin",
"slug": "howeton-cabin-101",
"type": "cabin",
"countryAlpha2": "FJ",
"city": "Howeton",
"address": "1831 Della Inlet",
"latitude": 11.689203,
"longitude": 93.651929,
"bedrooms": 4,
"bathrooms": 0.5,
"maxGuests": 6,
"pricePerNight": 842.37,
"currency": "EUR",
"rating": 3.3,
"ratingCount": 1307,
"hostUserId": 156,
"createdAt": "2025-10-12T18:10:08.374Z",
"updatedAt": "2026-03-07T19:12:56.646Z"
}