example-data.com

properties / #101

Howeton Cabin

cabin · Howeton · $842.37/night · ★ 3.3 (1307)

1831 Della Inlet

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/101"
)
propertie = res.json()
{
  "id": 101,
  "name": "Howeton Cabin",
  "slug": "howeton-cabin-101",
  "type": "cabin",
  "countryAlpha2": "FJ",
  "city": "Howeton",
  "address": "1831 Della Inlet",
  "latitude": 11.689203,
  "longitude": 93.651929,
  "bedrooms": 4,
  "bathrooms": 0.5,
  "maxGuests": 6,
  "pricePerNight": 842.37,
  "currency": "EUR",
  "rating": 3.3,
  "ratingCount": 1307,
  "hostUserId": 156,
  "createdAt": "2025-10-12T18:10:08.374Z",
  "updatedAt": "2026-03-07T19:12:56.646Z"
}
Draftbit