example-data.com

properties / #192

Bend Cabin

cabin · Bend · $495.56/night · ★ 4.7 (578)

52234 Gordon Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/192"
)
propertie = res.json()
{
  "id": 192,
  "name": "Bend Cabin",
  "slug": "bend-cabin-192",
  "type": "cabin",
  "countryAlpha2": "AT",
  "city": "Bend",
  "address": "52234 Gordon Road",
  "latitude": 10.677081,
  "longitude": 62.571619,
  "bedrooms": 3,
  "bathrooms": 1,
  "maxGuests": 8,
  "pricePerNight": 495.56,
  "currency": "BRL",
  "rating": 4.7,
  "ratingCount": 578,
  "hostUserId": 160,
  "createdAt": "2025-09-11T13:37:27.120Z",
  "updatedAt": "2025-10-15T00:11:40.256Z"
}
Draftbit