example-data.com

properties / #168

East Jalyn Loft

loft · East Jalyn · $512.99/night · ★ 4.1 (40)

408 Connelly Shoals

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/168"
)
propertie = res.json()
{
  "id": 168,
  "name": "East Jalyn Loft",
  "slug": "east-jalyn-loft-168",
  "type": "loft",
  "countryAlpha2": "CN",
  "city": "East Jalyn",
  "address": "408 Connelly Shoals",
  "latitude": -9.998959,
  "longitude": 29.095483,
  "bedrooms": 1,
  "bathrooms": 1.5,
  "maxGuests": 4,
  "pricePerNight": 512.99,
  "currency": "AUD",
  "rating": 4.1,
  "ratingCount": 40,
  "hostUserId": 83,
  "createdAt": "2024-10-15T15:21:20.697Z",
  "updatedAt": "2026-05-12T03:01:28.329Z"
}
Draftbit