example-data.com

properties / #80

Alexaneberg House

house · Alexaneberg · $1223.83/night · ★ 4.0 (157)

117 Tyrel Mount

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/80"
)
propertie = res.json()
{
  "id": 80,
  "name": "Alexaneberg House",
  "slug": "alexaneberg-house-80",
  "type": "house",
  "countryAlpha2": "SG",
  "city": "Alexaneberg",
  "address": "117 Tyrel Mount",
  "latitude": 41.099119,
  "longitude": -89.774698,
  "bedrooms": 6,
  "bathrooms": 1,
  "maxGuests": 2,
  "pricePerNight": 1223.83,
  "currency": "BRL",
  "rating": 4,
  "ratingCount": 157,
  "hostUserId": 132,
  "createdAt": "2026-04-27T10:05:48.119Z",
  "updatedAt": "2026-05-04T04:04:01.726Z"
}
Draftbit