example-data.com

properties / #160

Jensenworth Condo

condo · Jensenworth · $558.94/night · ★ 4.8 (1469)

67911 Meadow Lane

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/160"
)
propertie = res.json()
{
  "id": 160,
  "name": "Jensenworth Condo",
  "slug": "jensenworth-condo-160",
  "type": "condo",
  "countryAlpha2": "SG",
  "city": "Jensenworth",
  "address": "67911 Meadow Lane",
  "latitude": 30.39105,
  "longitude": -20.926757,
  "bedrooms": 5,
  "bathrooms": 3,
  "maxGuests": 11,
  "pricePerNight": 558.94,
  "currency": "BRL",
  "rating": 4.8,
  "ratingCount": 1469,
  "hostUserId": 219,
  "createdAt": "2025-07-04T05:21:29.735Z",
  "updatedAt": "2025-08-21T03:26:03.443Z"
}
Draftbit