example-data.com

properties / #85

East Heloise Cabin

cabin · East Heloise · $1136.01/night · ★ 4.6 (97)

116 Park Place

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/85"
)
propertie = res.json()
{
  "id": 85,
  "name": "East Heloise Cabin",
  "slug": "east-heloise-cabin-85",
  "type": "cabin",
  "countryAlpha2": "IT",
  "city": "East Heloise",
  "address": "116 Park Place",
  "latitude": -46.349705,
  "longitude": 74.984077,
  "bedrooms": 3,
  "bathrooms": 2.5,
  "maxGuests": 1,
  "pricePerNight": 1136.01,
  "currency": "CAD",
  "rating": 4.6,
  "ratingCount": 97,
  "hostUserId": 217,
  "createdAt": "2026-02-08T02:07:33.252Z",
  "updatedAt": "2026-03-22T09:18:36.257Z"
}
Draftbit