example-data.com

properties / #12

East Royalhaven Loft

loft · East Royalhaven · $747.51/night · ★ 2.6 (1694)

75120 Guillermo Pass

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/12"
)
propertie = res.json()
{
  "id": 12,
  "name": "East Royalhaven Loft",
  "slug": "east-royalhaven-loft-12",
  "type": "loft",
  "countryAlpha2": "IE",
  "city": "East Royalhaven",
  "address": "75120 Guillermo Pass",
  "latitude": -21.624786,
  "longitude": 31.109307,
  "bedrooms": 5,
  "bathrooms": 2.5,
  "maxGuests": 2,
  "pricePerNight": 747.51,
  "currency": "GBP",
  "rating": 2.6,
  "ratingCount": 1694,
  "hostUserId": 136,
  "createdAt": "2025-09-30T01:16:39.723Z",
  "updatedAt": "2026-01-10T13:07:14.794Z"
}
Draftbit