example-data.com

properties / #179

Lombard Loft

loft · Lombard · $1235.09/night · ★ 4.0 (1790)

6760 Elroy Ford

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/179"
)
propertie = res.json()
{
  "id": 179,
  "name": "Lombard Loft",
  "slug": "lombard-loft-179",
  "type": "loft",
  "countryAlpha2": "CL",
  "city": "Lombard",
  "address": "6760 Elroy Ford",
  "latitude": 2.706984,
  "longitude": -82.403038,
  "bedrooms": 4,
  "bathrooms": 0.5,
  "maxGuests": 6,
  "pricePerNight": 1235.09,
  "currency": "AUD",
  "rating": 4,
  "ratingCount": 1790,
  "hostUserId": 54,
  "createdAt": "2025-12-09T17:30:52.631Z",
  "updatedAt": "2026-02-05T11:24:48.419Z"
}
Draftbit