example-data.com

properties / #97

Philadelphia Condo

condo · Philadelphia · $1207.98/night · ★ 4.6 (1558)

986 Dovie Parkway

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/97" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/97"
);
const propertie = await res.json();
import type { Propertie } from "https://example-data.com/types/properties.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/properties/97"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/97"
)
propertie = res.json()
{
  "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"
}
Draftbit