Philadelphia Condo
condo · Philadelphia · $1207.98/night · ★ 4.6 (1558)
986 Dovie Parkway
Overview
properties / #97
condo · Philadelphia · $1207.98/night · ★ 4.6 (1558)
986 Dovie Parkway
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/97" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/97" ); 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/97"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/97"
)
propertie = res.json() Response
{
"id": 97,
"name": "Philadelphia Condo",
"slug": "philadelphia-condo-97",
"type": "condo",
"countryAlpha2": "SG",
"city": "Philadelphia",
"address": "986 Dovie Parkway",
"latitude": -13.044067,
"longitude": -177.800392,
"bedrooms": 5,
"bathrooms": 2.5,
"maxGuests": 8,
"pricePerNight": 1207.98,
"currency": "USD",
"rating": 4.6,
"ratingCount": 1558,
"hostUserId": 196,
"createdAt": "2024-06-17T10:48:34.866Z",
"updatedAt": "2025-10-06T18:20:19.993Z"
}