example-data.com

properties / #50

Filibertobury Loft

loft · Filibertobury · $569.07/night · ★ 2.7 (1165)

7210 Commercial Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/50"
)
propertie = res.json()
{
  "id": 50,
  "name": "Filibertobury Loft",
  "slug": "filibertobury-loft-50",
  "type": "loft",
  "countryAlpha2": "PH",
  "city": "Filibertobury",
  "address": "7210 Commercial Road",
  "latitude": 33.745661,
  "longitude": 102.97549,
  "bedrooms": 6,
  "bathrooms": 0.5,
  "maxGuests": 4,
  "pricePerNight": 569.07,
  "currency": "AED",
  "rating": 2.7,
  "ratingCount": 1165,
  "hostUserId": 55,
  "createdAt": "2026-05-08T04:58:09.208Z",
  "updatedAt": "2026-05-10T21:51:26.302Z"
}
Draftbit