example-data.com

properties / #84

Deanborough House

house · Deanborough · $347.38/night · ★ 2.7 (414)

7568 W Union Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/84"
)
propertie = res.json()
{
  "id": 84,
  "name": "Deanborough House",
  "slug": "deanborough-house-84",
  "type": "house",
  "countryAlpha2": "NG",
  "city": "Deanborough",
  "address": "7568 W Union Street",
  "latitude": -0.374094,
  "longitude": -16.831793,
  "bedrooms": 5,
  "bathrooms": 3,
  "maxGuests": 6,
  "pricePerNight": 347.38,
  "currency": "SGD",
  "rating": 2.7,
  "ratingCount": 414,
  "hostUserId": 112,
  "createdAt": "2024-09-15T16:13:40.888Z",
  "updatedAt": "2025-07-29T09:14:37.138Z"
}
Draftbit