example-data.com

properties / #89

Eau Claire House

house · Eau Claire · $1010/night · ★ 3.2 (512)

967 Lincoln Avenue

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/89"
)
propertie = res.json()
{
  "id": 89,
  "name": "Eau Claire House",
  "slug": "eau-claire-house-89",
  "type": "house",
  "countryAlpha2": "AT",
  "city": "Eau Claire",
  "address": "967 Lincoln Avenue",
  "latitude": 49.832655,
  "longitude": 49.765175,
  "bedrooms": 2,
  "bathrooms": 1.5,
  "maxGuests": 4,
  "pricePerNight": 1010,
  "currency": "USD",
  "rating": 3.2,
  "ratingCount": 512,
  "hostUserId": 195,
  "createdAt": "2026-03-10T22:41:43.837Z",
  "updatedAt": "2026-03-21T11:49:14.063Z"
}
Draftbit