example-data.com

properties / #176

Casandraton House

house · Casandraton · $412.05/night · ★ 3.2 (284)

65320 Ila Grove

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/176"
)
propertie = res.json()
{
  "id": 176,
  "name": "Casandraton House",
  "slug": "casandraton-house-176",
  "type": "house",
  "countryAlpha2": "FI",
  "city": "Casandraton",
  "address": "65320 Ila Grove",
  "latitude": -45.319899,
  "longitude": 154.723806,
  "bedrooms": 3,
  "bathrooms": 1.5,
  "maxGuests": 8,
  "pricePerNight": 412.05,
  "currency": "AUD",
  "rating": 3.2,
  "ratingCount": 284,
  "hostUserId": 221,
  "createdAt": "2024-11-05T17:57:54.024Z",
  "updatedAt": "2025-11-06T04:34:49.048Z"
}
Draftbit