example-data.com

properties / #9

Demariostead Apartment

apartment · Demariostead · $1040.4/night · ★ 3.0 (1893)

7236 Jewell Spur

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/9"
)
propertie = res.json()
{
  "id": 9,
  "name": "Demariostead Apartment",
  "slug": "demariostead-apartment-9",
  "type": "apartment",
  "countryAlpha2": "KR",
  "city": "Demariostead",
  "address": "7236 Jewell Spur",
  "latitude": -15.7256,
  "longitude": 100.530172,
  "bedrooms": 4,
  "bathrooms": 3,
  "maxGuests": 4,
  "pricePerNight": 1040.4,
  "currency": "SGD",
  "rating": 3,
  "ratingCount": 1893,
  "hostUserId": 114,
  "createdAt": "2025-05-01T09:53:18.821Z",
  "updatedAt": "2026-03-26T01:07:13.675Z"
}
Draftbit