Joannyburgh House
house · Joannyburgh · $1208.86/night · ★ 4.5 (1281)
3221 Lueilwitz Rue
Overview
properties / #26
house · Joannyburgh · $1208.86/night · ★ 4.5 (1281)
3221 Lueilwitz Rue
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/26" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/26" ); 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/26"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/26"
)
propertie = res.json() Response
{
"id": 26,
"name": "Joannyburgh House",
"slug": "joannyburgh-house-26",
"type": "house",
"countryAlpha2": "BE",
"city": "Joannyburgh",
"address": "3221 Lueilwitz Rue",
"latitude": -32.106351,
"longitude": -103.474961,
"bedrooms": 4,
"bathrooms": 4,
"maxGuests": 7,
"pricePerNight": 1208.86,
"currency": "JPY",
"rating": 4.5,
"ratingCount": 1281,
"hostUserId": 193,
"createdAt": "2025-11-23T06:54:50.345Z",
"updatedAt": "2026-01-17T14:41:21.615Z"
}