example-data.com

properties / #65

Beerside Cabin

cabin · Beerside · $481.29/night · ★ 3.3 (226)

1104 Rempel Rest

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/65"
)
propertie = res.json()
{
  "id": 65,
  "name": "Beerside Cabin",
  "slug": "beerside-cabin-65",
  "type": "cabin",
  "countryAlpha2": "SE",
  "city": "Beerside",
  "address": "1104 Rempel Rest",
  "latitude": 21.111013,
  "longitude": -45.63385,
  "bedrooms": 0,
  "bathrooms": 2.5,
  "maxGuests": 2,
  "pricePerNight": 481.29,
  "currency": "MXN",
  "rating": 3.3,
  "ratingCount": 226,
  "hostUserId": 221,
  "createdAt": "2026-01-17T19:44:11.810Z",
  "updatedAt": "2026-05-02T11:29:29.380Z"
}
Draftbit