example-data.com

properties / #83

Fayetteville House

house · Fayetteville · $1279.38/night · ★ 4.8 (622)

6479 Bramble Close

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/83"
)
propertie = res.json()
{
  "id": 83,
  "name": "Fayetteville House",
  "slug": "fayetteville-house-83",
  "type": "house",
  "countryAlpha2": "SG",
  "city": "Fayetteville",
  "address": "6479 Bramble Close",
  "latitude": -19.083699,
  "longitude": 49.942931,
  "bedrooms": 3,
  "bathrooms": 1,
  "maxGuests": 6,
  "pricePerNight": 1279.38,
  "currency": "USD",
  "rating": 4.8,
  "ratingCount": 622,
  "hostUserId": 72,
  "createdAt": "2026-05-20T09:25:56.664Z",
  "updatedAt": "2026-05-20T10:35:24.059Z"
}
Draftbit