example-data.com

properties / #152

Stromanstead Condo

condo · Stromanstead · $51.08/night · ★ 4.0 (1122)

641 Rebecca Oval

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/152"
)
propertie = res.json()
{
  "id": 152,
  "name": "Stromanstead Condo",
  "slug": "stromanstead-condo-152",
  "type": "condo",
  "countryAlpha2": "ET",
  "city": "Stromanstead",
  "address": "641 Rebecca Oval",
  "latitude": -50.935289,
  "longitude": -77.878518,
  "bedrooms": 2,
  "bathrooms": 1.5,
  "maxGuests": 6,
  "pricePerNight": 51.08,
  "currency": "MXN",
  "rating": 4,
  "ratingCount": 1122,
  "hostUserId": 241,
  "createdAt": "2025-07-04T09:19:00.428Z",
  "updatedAt": "2026-03-31T23:45:39.144Z"
}
Draftbit