example-data.com

properties / #191

Cerritos Loft

loft · Cerritos · $1208.08/night · ★ 4.9 (1625)

271 Hegmann Track

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/191"
)
propertie = res.json()
{
  "id": 191,
  "name": "Cerritos Loft",
  "slug": "cerritos-loft-191",
  "type": "loft",
  "countryAlpha2": "PL",
  "city": "Cerritos",
  "address": "271 Hegmann Track",
  "latitude": -3.814414,
  "longitude": 122.620895,
  "bedrooms": 0,
  "bathrooms": 1.5,
  "maxGuests": 1,
  "pricePerNight": 1208.08,
  "currency": "AUD",
  "rating": 4.9,
  "ratingCount": 1625,
  "hostUserId": 194,
  "createdAt": "2025-09-20T16:49:46.231Z",
  "updatedAt": "2026-05-06T00:58:51.589Z"
}
Draftbit