example-data.com

properties / #103

Fort Maximoberg Villa

villa · Fort Maximoberg · $169.37/night · ★ 3.5 (419)

54151 Ilene Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/103"
)
propertie = res.json()
{
  "id": 103,
  "name": "Fort Maximoberg Villa",
  "slug": "fort-maximoberg-villa-103",
  "type": "villa",
  "countryAlpha2": "AT",
  "city": "Fort Maximoberg",
  "address": "54151 Ilene Street",
  "latitude": 25.569171,
  "longitude": -142.410326,
  "bedrooms": 1,
  "bathrooms": 2.5,
  "maxGuests": 2,
  "pricePerNight": 169.37,
  "currency": "AED",
  "rating": 3.5,
  "ratingCount": 419,
  "hostUserId": 134,
  "createdAt": "2025-07-01T07:19:34.379Z",
  "updatedAt": "2025-12-23T13:25:46.536Z"
}
Draftbit