example-data.com

properties / #140

Kihnworth Villa

villa · Kihnworth · $991.37/night · ★ 3.9 (715)

459 Fisher Court

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/140"
)
propertie = res.json()
{
  "id": 140,
  "name": "Kihnworth Villa",
  "slug": "kihnworth-villa-140",
  "type": "villa",
  "countryAlpha2": "PL",
  "city": "Kihnworth",
  "address": "459 Fisher Court",
  "latitude": 14.331279,
  "longitude": -92.841624,
  "bedrooms": 6,
  "bathrooms": 4,
  "maxGuests": 3,
  "pricePerNight": 991.37,
  "currency": "JPY",
  "rating": 3.9,
  "ratingCount": 715,
  "hostUserId": 229,
  "createdAt": "2025-12-04T04:56:22.680Z",
  "updatedAt": "2026-04-18T12:09:32.494Z"
}
Draftbit