example-data.com

properties / #25

Yostside Condo

condo · Yostside · $58.46/night · ★ 2.9 (1930)

7112 Baker Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/25"
)
propertie = res.json()
{
  "id": 25,
  "name": "Yostside Condo",
  "slug": "yostside-condo-25",
  "type": "condo",
  "countryAlpha2": "SA",
  "city": "Yostside",
  "address": "7112 Baker Street",
  "latitude": -19.185023,
  "longitude": -21.98831,
  "bedrooms": 6,
  "bathrooms": 2.5,
  "maxGuests": 6,
  "pricePerNight": 58.46,
  "currency": "MXN",
  "rating": 2.9,
  "ratingCount": 1930,
  "hostUserId": 138,
  "createdAt": "2025-12-14T01:39:32.207Z",
  "updatedAt": "2025-12-15T11:36:20.424Z"
}
Draftbit