example-data.com

properties / #172

Fort Malcolmworth Villa

villa · Fort Malcolmworth · $1429.97/night · ★ 4.8 (382)

5987 Katrina Coves

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/172"
)
propertie = res.json()
{
  "id": 172,
  "name": "Fort Malcolmworth Villa",
  "slug": "fort-malcolmworth-villa-172",
  "type": "villa",
  "countryAlpha2": "KR",
  "city": "Fort Malcolmworth",
  "address": "5987 Katrina Coves",
  "latitude": 36.655355,
  "longitude": 119.509279,
  "bedrooms": 2,
  "bathrooms": 2.5,
  "maxGuests": 1,
  "pricePerNight": 1429.97,
  "currency": "USD",
  "rating": 4.8,
  "ratingCount": 382,
  "hostUserId": 167,
  "createdAt": "2025-04-07T05:39:05.389Z",
  "updatedAt": "2026-03-25T03:29:01.146Z"
}
Draftbit