example-data.com

properties / #13

Durganton Villa

villa · Durganton · $929.26/night · ★ 3.6 (92)

102 Zora Fort

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/13"
)
propertie = res.json()
{
  "id": 13,
  "name": "Durganton Villa",
  "slug": "durganton-villa-13",
  "type": "villa",
  "countryAlpha2": "IN",
  "city": "Durganton",
  "address": "102 Zora Fort",
  "latitude": 25.75433,
  "longitude": -37.741874,
  "bedrooms": 4,
  "bathrooms": 3,
  "maxGuests": 5,
  "pricePerNight": 929.26,
  "currency": "SGD",
  "rating": 3.6,
  "ratingCount": 92,
  "hostUserId": 158,
  "createdAt": "2026-04-30T06:25:43.996Z",
  "updatedAt": "2026-05-13T03:38:25.514Z"
}
Draftbit