example-data.com

properties / #87

Lake Abdullah Villa

villa · Lake Abdullah · $741.2/night · ★ 4.6 (782)

9655 Kelvin Place

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/87"
)
propertie = res.json()
{
  "id": 87,
  "name": "Lake Abdullah Villa",
  "slug": "lake-abdullah-villa-87",
  "type": "villa",
  "countryAlpha2": "MX",
  "city": "Lake Abdullah",
  "address": "9655 Kelvin Place",
  "latitude": -52.373937,
  "longitude": -143.448554,
  "bedrooms": 4,
  "bathrooms": 2,
  "maxGuests": 7,
  "pricePerNight": 741.2,
  "currency": "SGD",
  "rating": 4.6,
  "ratingCount": 782,
  "hostUserId": 14,
  "createdAt": "2025-11-16T10:24:45.841Z",
  "updatedAt": "2026-02-17T09:43:47.767Z"
}
Draftbit