example-data.com

properties / #2

Port Ramiroburgh Villa

villa · Port Ramiroburgh · $524.9/night · ★ 3.7 (14)

4740 Connie Station

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/2"
)
propertie = res.json()
{
  "id": 2,
  "name": "Port Ramiroburgh Villa",
  "slug": "port-ramiroburgh-villa-2",
  "type": "villa",
  "countryAlpha2": "ZA",
  "city": "Port Ramiroburgh",
  "address": "4740 Connie Station",
  "latitude": -52.458307,
  "longitude": -103.758107,
  "bedrooms": 6,
  "bathrooms": 2.5,
  "maxGuests": 6,
  "pricePerNight": 524.9,
  "currency": "SGD",
  "rating": 3.7,
  "ratingCount": 14,
  "hostUserId": 40,
  "createdAt": "2025-10-10T09:38:17.845Z",
  "updatedAt": "2026-03-03T18:40:39.424Z"
}
Draftbit