example-data.com

properties / #19

Port Hillaryfield Condo

condo · Port Hillaryfield · $143.29/night · ★ 4.4 (1055)

9219 Manchester Road

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/19"
)
propertie = res.json()
{
  "id": 19,
  "name": "Port Hillaryfield Condo",
  "slug": "port-hillaryfield-condo-19",
  "type": "condo",
  "countryAlpha2": "KE",
  "city": "Port Hillaryfield",
  "address": "9219 Manchester Road",
  "latitude": 52.382632,
  "longitude": 68.392763,
  "bedrooms": 4,
  "bathrooms": 4,
  "maxGuests": 9,
  "pricePerNight": 143.29,
  "currency": "JPY",
  "rating": 4.4,
  "ratingCount": 1055,
  "hostUserId": 164,
  "createdAt": "2025-03-18T07:24:06.513Z",
  "updatedAt": "2025-04-17T11:59:22.633Z"
}
Draftbit