example-data.com

properties / #8

Demariohaven Apartment

apartment · Demariohaven · $767.77/night · ★ 4.0 (1292)

2513 Pauline Lodge

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/8"
)
propertie = res.json()
{
  "id": 8,
  "name": "Demariohaven Apartment",
  "slug": "demariohaven-apartment-8",
  "type": "apartment",
  "countryAlpha2": "TR",
  "city": "Demariohaven",
  "address": "2513 Pauline Lodge",
  "latitude": 3.110033,
  "longitude": -179.776028,
  "bedrooms": 5,
  "bathrooms": 1.5,
  "maxGuests": 6,
  "pricePerNight": 767.77,
  "currency": "BRL",
  "rating": 4,
  "ratingCount": 1292,
  "hostUserId": 32,
  "createdAt": "2026-04-02T13:01:48.034Z",
  "updatedAt": "2026-05-07T20:34:47.260Z"
}
Draftbit