Deanborough House
house · Deanborough · $347.38/night · ★ 2.7 (414)
7568 W Union Street
Overview
properties / #84
house · Deanborough · $347.38/night · ★ 2.7 (414)
7568 W Union Street
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/84" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/84" ); 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/84"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/84"
)
propertie = res.json() Response
{
"id": 84,
"name": "Deanborough House",
"slug": "deanborough-house-84",
"type": "house",
"countryAlpha2": "NG",
"city": "Deanborough",
"address": "7568 W Union Street",
"latitude": -0.374094,
"longitude": -16.831793,
"bedrooms": 5,
"bathrooms": 3,
"maxGuests": 6,
"pricePerNight": 347.38,
"currency": "SGD",
"rating": 2.7,
"ratingCount": 414,
"hostUserId": 112,
"createdAt": "2024-09-15T16:13:40.888Z",
"updatedAt": "2025-07-29T09:14:37.138Z"
}