example-data.com

properties / #125

Kingfort Cabin

cabin · Kingfort · $700.38/night · ★ 4.6 (142)

41175 Macejkovic Fork

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/125"
)
propertie = res.json()
{
  "id": 125,
  "name": "Kingfort Cabin",
  "slug": "kingfort-cabin-125",
  "type": "cabin",
  "countryAlpha2": "VN",
  "city": "Kingfort",
  "address": "41175 Macejkovic Fork",
  "latitude": -23.611834,
  "longitude": 108.999358,
  "bedrooms": 2,
  "bathrooms": 1.5,
  "maxGuests": 4,
  "pricePerNight": 700.38,
  "currency": "AUD",
  "rating": 4.6,
  "ratingCount": 142,
  "hostUserId": 123,
  "createdAt": "2025-02-27T04:27:47.527Z",
  "updatedAt": "2025-10-11T12:16:54.390Z"
}
Draftbit