Armstrongville Cabin
cabin · Armstrongville · $396.27/night · ★ 4.7 (1205)
69823 Court Street
Overview
properties / #198
cabin · Armstrongville · $396.27/night · ★ 4.7 (1205)
69823 Court Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/198" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/198" ); 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/198"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/198"
)
propertie = res.json() Response
{
"id": 198,
"name": "Armstrongville Cabin",
"slug": "armstrongville-cabin-198",
"type": "cabin",
"countryAlpha2": "GB",
"city": "Armstrongville",
"address": "69823 Court Street",
"latitude": -38.608225,
"longitude": -112.38062,
"bedrooms": 3,
"bathrooms": 0.5,
"maxGuests": 4,
"pricePerNight": 396.27,
"currency": "AED",
"rating": 4.7,
"ratingCount": 1205,
"hostUserId": 143,
"createdAt": "2026-05-08T19:22:11.440Z",
"updatedAt": "2026-05-14T18:44:41.562Z"
}