example-data.com

properties / #45

Davenport Cabin

cabin · Davenport · $881.34/night · ★ 4.2 (61)

97684 Marjolaine Walks

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/45"
)
propertie = res.json()
{
  "id": 45,
  "name": "Davenport Cabin",
  "slug": "davenport-cabin-45",
  "type": "cabin",
  "countryAlpha2": "KR",
  "city": "Davenport",
  "address": "97684 Marjolaine Walks",
  "latitude": -20.232876,
  "longitude": -57.231662,
  "bedrooms": 2,
  "bathrooms": 2,
  "maxGuests": 6,
  "pricePerNight": 881.34,
  "currency": "USD",
  "rating": 4.2,
  "ratingCount": 61,
  "hostUserId": 186,
  "createdAt": "2025-09-11T16:16:01.340Z",
  "updatedAt": "2025-09-24T10:39:12.542Z"
}
Draftbit