example-data.com

properties / #181

Port Antonetta Loft

loft · Port Antonetta · $1347.29/night · ★ 3.3 (171)

3742 Schowalter Terrace

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/181"
)
propertie = res.json()
{
  "id": 181,
  "name": "Port Antonetta Loft",
  "slug": "port-antonetta-loft-181",
  "type": "loft",
  "countryAlpha2": "SE",
  "city": "Port Antonetta",
  "address": "3742 Schowalter Terrace",
  "latitude": -42.796335,
  "longitude": 39.312699,
  "bedrooms": 4,
  "bathrooms": 0.5,
  "maxGuests": 5,
  "pricePerNight": 1347.29,
  "currency": "CAD",
  "rating": 3.3,
  "ratingCount": 171,
  "hostUserId": 77,
  "createdAt": "2025-03-20T05:46:22.186Z",
  "updatedAt": "2025-11-09T00:49:37.706Z"
}
Draftbit