Fort River Apartment
apartment · Fort River · $857.28/night · ★ 4.4 (1854)
696 Willy Key
Overview
properties / #95
apartment · Fort River · $857.28/night · ★ 4.4 (1854)
696 Willy Key
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/95" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/95" ); 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/95"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/95"
)
propertie = res.json() Response
{
"id": 95,
"name": "Fort River Apartment",
"slug": "fort-river-apartment-95",
"type": "apartment",
"countryAlpha2": "NZ",
"city": "Fort River",
"address": "696 Willy Key",
"latitude": -43.316788,
"longitude": 149.955539,
"bedrooms": 1,
"bathrooms": 3.5,
"maxGuests": 1,
"pricePerNight": 857.28,
"currency": "USD",
"rating": 4.4,
"ratingCount": 1854,
"hostUserId": 112,
"createdAt": "2025-08-03T08:03:59.677Z",
"updatedAt": "2025-08-12T00:46:49.890Z"
}