example-data.com

properties / #92

Jorgetown Condo

condo · Jorgetown · $236.91/night · ★ 3.4 (1317)

507 Moore Cove

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/92"
)
propertie = res.json()
{
  "id": 92,
  "name": "Jorgetown Condo",
  "slug": "jorgetown-condo-92",
  "type": "condo",
  "countryAlpha2": "KR",
  "city": "Jorgetown",
  "address": "507 Moore Cove",
  "latitude": 13.069979,
  "longitude": 99.412819,
  "bedrooms": 2,
  "bathrooms": 3.5,
  "maxGuests": 2,
  "pricePerNight": 236.91,
  "currency": "AUD",
  "rating": 3.4,
  "ratingCount": 1317,
  "hostUserId": 144,
  "createdAt": "2025-02-17T11:08:32.682Z",
  "updatedAt": "2025-06-29T22:52:17.995Z"
}
Draftbit