Port Hillaryfield Condo
condo · Port Hillaryfield · $143.29/night · ★ 4.4 (1055)
9219 Manchester Road
Overview
properties / #19
condo · Port Hillaryfield · $143.29/night · ★ 4.4 (1055)
9219 Manchester Road
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/19" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/19" ); 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/19"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/19"
)
propertie = res.json() Response
{
"id": 19,
"name": "Port Hillaryfield Condo",
"slug": "port-hillaryfield-condo-19",
"type": "condo",
"countryAlpha2": "KE",
"city": "Port Hillaryfield",
"address": "9219 Manchester Road",
"latitude": 52.382632,
"longitude": 68.392763,
"bedrooms": 4,
"bathrooms": 4,
"maxGuests": 9,
"pricePerNight": 143.29,
"currency": "JPY",
"rating": 4.4,
"ratingCount": 1055,
"hostUserId": 164,
"createdAt": "2025-03-18T07:24:06.513Z",
"updatedAt": "2025-04-17T11:59:22.633Z"
}