Eau Claire House
house · Eau Claire · $1010/night · ★ 3.2 (512)
967 Lincoln Avenue
Overview
properties / #89
house · Eau Claire · $1010/night · ★ 3.2 (512)
967 Lincoln Avenue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/89" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/89" ); 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/89"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/89"
)
propertie = res.json() Response
{
"id": 89,
"name": "Eau Claire House",
"slug": "eau-claire-house-89",
"type": "house",
"countryAlpha2": "AT",
"city": "Eau Claire",
"address": "967 Lincoln Avenue",
"latitude": 49.832655,
"longitude": 49.765175,
"bedrooms": 2,
"bathrooms": 1.5,
"maxGuests": 4,
"pricePerNight": 1010,
"currency": "USD",
"rating": 3.2,
"ratingCount": 512,
"hostUserId": 195,
"createdAt": "2026-03-10T22:41:43.837Z",
"updatedAt": "2026-03-21T11:49:14.063Z"
}