example-data.com

properties / #22

Kuhicberg Villa

villa · Kuhicberg · $1294.26/night · ★ 3.3 (1752)

2767 Schultz Junction

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/22"
)
propertie = res.json()
{
  "id": 22,
  "name": "Kuhicberg Villa",
  "slug": "kuhicberg-villa-22",
  "type": "villa",
  "countryAlpha2": "PH",
  "city": "Kuhicberg",
  "address": "2767 Schultz Junction",
  "latitude": -0.549794,
  "longitude": 17.165406,
  "bedrooms": 2,
  "bathrooms": 2,
  "maxGuests": 5,
  "pricePerNight": 1294.26,
  "currency": "MXN",
  "rating": 3.3,
  "ratingCount": 1752,
  "hostUserId": 63,
  "createdAt": "2026-03-10T06:23:21.228Z",
  "updatedAt": "2026-05-10T14:02:39.011Z"
}
Draftbit