example-data.com

properties / #190

Port Sarahworth Condo

condo · Port Sarahworth · $1247.87/night · ★ 4.5 (364)

93388 S Maple Street

Component variants

curl -sS \
  "https://example-data.com/api/v1/properties/190" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/properties/190"
);
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/190"
);
const propertie = (await res.json()) as Propertie;
import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/190"
)
propertie = res.json()
{
  "id": 190,
  "name": "Port Sarahworth Condo",
  "slug": "port-sarahworth-condo-190",
  "type": "condo",
  "countryAlpha2": "AU",
  "city": "Port Sarahworth",
  "address": "93388 S Maple Street",
  "latitude": -50.197713,
  "longitude": 73.80833,
  "bedrooms": 6,
  "bathrooms": 4,
  "maxGuests": 4,
  "pricePerNight": 1247.87,
  "currency": "USD",
  "rating": 4.5,
  "ratingCount": 364,
  "hostUserId": 214,
  "createdAt": "2025-11-08T06:49:46.169Z",
  "updatedAt": "2026-01-12T21:57:37.146Z"
}
Draftbit