example-data.com

properties / #34

New Zora Apartment

apartment · New Zora · $1004.26/night · ★ 2.6 (1253)

3857 Fletcher Port

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/34"
)
propertie = res.json()
{
  "id": 34,
  "name": "New Zora Apartment",
  "slug": "new-zora-apartment-34",
  "type": "apartment",
  "countryAlpha2": "NL",
  "city": "New Zora",
  "address": "3857 Fletcher Port",
  "latitude": 37.721935,
  "longitude": -64.518117,
  "bedrooms": 0,
  "bathrooms": 3.5,
  "maxGuests": 1,
  "pricePerNight": 1004.26,
  "currency": "SGD",
  "rating": 2.6,
  "ratingCount": 1253,
  "hostUserId": 138,
  "createdAt": "2025-08-04T07:09:22.099Z",
  "updatedAt": "2025-10-31T07:18:26.003Z"
}
Draftbit