example-data.com

properties / #143

Kautzercester Condo

condo · Kautzercester · $288.98/night · ★ 4.5 (1715)

99666 Francesca Shoals

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/143"
)
propertie = res.json()
{
  "id": 143,
  "name": "Kautzercester Condo",
  "slug": "kautzercester-condo-143",
  "type": "condo",
  "countryAlpha2": "MX",
  "city": "Kautzercester",
  "address": "99666 Francesca Shoals",
  "latitude": 53.12053,
  "longitude": 62.429121,
  "bedrooms": 6,
  "bathrooms": 2,
  "maxGuests": 5,
  "pricePerNight": 288.98,
  "currency": "GBP",
  "rating": 4.5,
  "ratingCount": 1715,
  "hostUserId": 114,
  "createdAt": "2026-01-02T22:32:59.944Z",
  "updatedAt": "2026-02-04T23:35:00.451Z"
}
Draftbit