example-data.com

properties / #132

Port Ronaldochester Condo

condo · Port Ronaldochester · $324.52/night · ★ 4.4 (937)

819 Brookside

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/132"
)
propertie = res.json()
{
  "id": 132,
  "name": "Port Ronaldochester Condo",
  "slug": "port-ronaldochester-condo-132",
  "type": "condo",
  "countryAlpha2": "DE",
  "city": "Port Ronaldochester",
  "address": "819 Brookside",
  "latitude": 35.808522,
  "longitude": 168.508892,
  "bedrooms": 6,
  "bathrooms": 4,
  "maxGuests": 2,
  "pricePerNight": 324.52,
  "currency": "GBP",
  "rating": 4.4,
  "ratingCount": 937,
  "hostUserId": 18,
  "createdAt": "2025-04-27T07:50:51.101Z",
  "updatedAt": "2025-07-21T18:11:40.401Z"
}
Draftbit