example-data.com

properties / #17

Zemlakchester Villa

villa · Zemlakchester · $261.23/night · ★ 3.0 (1086)

9878 Deckow Fort

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/17"
)
propertie = res.json()
{
  "id": 17,
  "name": "Zemlakchester Villa",
  "slug": "zemlakchester-villa-17",
  "type": "villa",
  "countryAlpha2": "IL",
  "city": "Zemlakchester",
  "address": "9878 Deckow Fort",
  "latitude": -53.796599,
  "longitude": -27.342615,
  "bedrooms": 3,
  "bathrooms": 4,
  "maxGuests": 3,
  "pricePerNight": 261.23,
  "currency": "EUR",
  "rating": 3,
  "ratingCount": 1086,
  "hostUserId": 165,
  "createdAt": "2025-02-20T13:19:27.626Z",
  "updatedAt": "2025-09-09T02:33:29.204Z"
}
Draftbit