example-data.com
Menu
Browse docs and collections

Overview

properties / #85

East Heloise Cabin

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

116 Park Place

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/properties/85" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/properties/85"
);
const property = await res.json();

TypeScript example

// Download once: mkdir -p types && curl -o types/properties.d.ts https://example-data.com/types/properties.d.ts
import type { Property } from "./types/properties";

const res = await fetch(
  "https://example-data.com/api/v1/properties/85"
);
const property = (await res.json()) as Property;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/properties/85"
)
propertie = res.json()

Response

{
  "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"
}