example-data.com

properties / #115

New Cecelia Loft

loft · New Cecelia · $1027.28/night · ★ 4.9 (1724)

217 VonRueden Island

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/115"
)
propertie = res.json()
{
  "id": 115,
  "name": "New Cecelia Loft",
  "slug": "new-cecelia-loft-115",
  "type": "loft",
  "countryAlpha2": "BR",
  "city": "New Cecelia",
  "address": "217 VonRueden Island",
  "latitude": 41.555458,
  "longitude": 12.804277,
  "bedrooms": 2,
  "bathrooms": 2.5,
  "maxGuests": 5,
  "pricePerNight": 1027.28,
  "currency": "AUD",
  "rating": 4.9,
  "ratingCount": 1724,
  "hostUserId": 221,
  "createdAt": "2025-01-01T06:12:25.739Z",
  "updatedAt": "2025-07-27T10:19:02.986Z"
}
Draftbit