example-data.com

properties / #62

West Hillardhaven Villa

villa · West Hillardhaven · $1261.59/night · ★ 3.8 (391)

650 Lurline Causeway

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/62"
)
propertie = res.json()
{
  "id": 62,
  "name": "West Hillardhaven Villa",
  "slug": "west-hillardhaven-villa-62",
  "type": "villa",
  "countryAlpha2": "EG",
  "city": "West Hillardhaven",
  "address": "650 Lurline Causeway",
  "latitude": -23.934488,
  "longitude": 39.55414,
  "bedrooms": 6,
  "bathrooms": 1.5,
  "maxGuests": 9,
  "pricePerNight": 1261.59,
  "currency": "SGD",
  "rating": 3.8,
  "ratingCount": 391,
  "hostUserId": 54,
  "createdAt": "2026-02-06T08:56:18.352Z",
  "updatedAt": "2026-05-01T14:29:35.383Z"
}
Draftbit