example-data.com

properties / #91

Liaview Cabin

cabin · Liaview · $1445.7/night · ★ 4.2 (1703)

4460 Willow Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/91"
)
propertie = res.json()
{
  "id": 91,
  "name": "Liaview Cabin",
  "slug": "liaview-cabin-91",
  "type": "cabin",
  "countryAlpha2": "PE",
  "city": "Liaview",
  "address": "4460 Willow Street",
  "latitude": -2.127292,
  "longitude": -102.496213,
  "bedrooms": 3,
  "bathrooms": 1,
  "maxGuests": 1,
  "pricePerNight": 1445.7,
  "currency": "BRL",
  "rating": 4.2,
  "ratingCount": 1703,
  "hostUserId": 66,
  "createdAt": "2025-10-08T09:53:29.983Z",
  "updatedAt": "2025-10-27T07:23:43.391Z"
}
Draftbit