example-data.com

properties / #157

Wiegandland Villa

villa · Wiegandland · $1103.1/night · ★ 3.7 (811)

67704 Abbey Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/157"
)
propertie = res.json()
{
  "id": 157,
  "name": "Wiegandland Villa",
  "slug": "wiegandland-villa-157",
  "type": "villa",
  "countryAlpha2": "IN",
  "city": "Wiegandland",
  "address": "67704 Abbey Road",
  "latitude": -15.274488,
  "longitude": -26.918979,
  "bedrooms": 3,
  "bathrooms": 4,
  "maxGuests": 7,
  "pricePerNight": 1103.1,
  "currency": "AUD",
  "rating": 3.7,
  "ratingCount": 811,
  "hostUserId": 213,
  "createdAt": "2025-07-28T07:09:06.463Z",
  "updatedAt": "2026-03-03T14:24:54.251Z"
}
Draftbit