example-data.com

properties / #15

Edina Apartment

apartment · Edina · $1414.82/night · ★ 3.8 (1511)

8583 Boyle Expressway

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/15"
)
propertie = res.json()
{
  "id": 15,
  "name": "Edina Apartment",
  "slug": "edina-apartment-15",
  "type": "apartment",
  "countryAlpha2": "ZA",
  "city": "Edina",
  "address": "8583 Boyle Expressway",
  "latitude": 33.639655,
  "longitude": -160.318198,
  "bedrooms": 3,
  "bathrooms": 3,
  "maxGuests": 1,
  "pricePerNight": 1414.82,
  "currency": "USD",
  "rating": 3.8,
  "ratingCount": 1511,
  "hostUserId": 126,
  "createdAt": "2025-12-19T09:20:18.578Z",
  "updatedAt": "2026-04-25T01:30:47.957Z"
}
Draftbit