Philadelphia House
house · Philadelphia · $191.53/night · ★ 2.7 (785)
32615 Effertz Summit
Overview
properties / #117
house · Philadelphia · $191.53/night · ★ 2.7 (785)
32615 Effertz Summit
Request
curl example
curl -sS \ "https://example-data.com/api/v1/properties/117" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/properties/117" ); 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/117"
);
const property = (await res.json()) as Property; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/properties/117"
)
propertie = res.json() Response
{
"id": 117,
"name": "Philadelphia House",
"slug": "philadelphia-house-117",
"type": "house",
"countryAlpha2": "IT",
"city": "Philadelphia",
"address": "32615 Effertz Summit",
"latitude": -18.911647,
"longitude": -0.804366,
"bedrooms": 5,
"bathrooms": 3,
"maxGuests": 11,
"pricePerNight": 191.53,
"currency": "USD",
"rating": 2.7,
"ratingCount": 785,
"hostUserId": 185,
"createdAt": "2025-09-22T05:25:42.708Z",
"updatedAt": "2025-11-01T10:57:05.087Z"
}