example-data.com

properties / #162

Douglaston House

house · Douglaston · $621.28/night · ★ 4.7 (640)

641 Jaqueline Trafficway

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/162"
)
propertie = res.json()
{
  "id": 162,
  "name": "Douglaston House",
  "slug": "douglaston-house-162",
  "type": "house",
  "countryAlpha2": "MY",
  "city": "Douglaston",
  "address": "641 Jaqueline Trafficway",
  "latitude": 15.780531,
  "longitude": 55.501052,
  "bedrooms": 0,
  "bathrooms": 1.5,
  "maxGuests": 2,
  "pricePerNight": 621.28,
  "currency": "JPY",
  "rating": 4.7,
  "ratingCount": 640,
  "hostUserId": 9,
  "createdAt": "2025-05-17T23:16:49.492Z",
  "updatedAt": "2026-03-27T07:39:58.711Z"
}
Draftbit