example-data.com

properties / #51

Port Jeffery Condo

condo · Port Jeffery · $452.69/night · ★ 4.0 (1377)

5616 Mayfield Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/51"
)
propertie = res.json()
{
  "id": 51,
  "name": "Port Jeffery Condo",
  "slug": "port-jeffery-condo-51",
  "type": "condo",
  "countryAlpha2": "PK",
  "city": "Port Jeffery",
  "address": "5616 Mayfield Road",
  "latitude": -49.014279,
  "longitude": -88.79873,
  "bedrooms": 5,
  "bathrooms": 3.5,
  "maxGuests": 4,
  "pricePerNight": 452.69,
  "currency": "AUD",
  "rating": 4,
  "ratingCount": 1377,
  "hostUserId": 132,
  "createdAt": "2026-01-04T16:18:45.868Z",
  "updatedAt": "2026-04-18T17:34:08.693Z"
}
Draftbit