example-data.com

properties / #134

East Hartford Cabin

cabin · East Hartford · $853.33/night · ★ 3.8 (113)

2221 Blind Lane

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/134"
)
propertie = res.json()
{
  "id": 134,
  "name": "East Hartford Cabin",
  "slug": "east-hartford-cabin-134",
  "type": "cabin",
  "countryAlpha2": "IE",
  "city": "East Hartford",
  "address": "2221 Blind Lane",
  "latitude": 6.834004,
  "longitude": -24.92935,
  "bedrooms": 4,
  "bathrooms": 1.5,
  "maxGuests": 5,
  "pricePerNight": 853.33,
  "currency": "EUR",
  "rating": 3.8,
  "ratingCount": 113,
  "hostUserId": 79,
  "createdAt": "2025-08-15T09:38:28.683Z",
  "updatedAt": "2025-08-17T09:29:18.220Z"
}
Draftbit