example-data.com

properties / #198

Armstrongville Cabin

cabin · Armstrongville · $396.27/night · ★ 4.7 (1205)

69823 Court Street

Component variants

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

res = requests.get(
    "https://example-data.com/api/v1/properties/198"
)
propertie = res.json()
{
  "id": 198,
  "name": "Armstrongville Cabin",
  "slug": "armstrongville-cabin-198",
  "type": "cabin",
  "countryAlpha2": "GB",
  "city": "Armstrongville",
  "address": "69823 Court Street",
  "latitude": -38.608225,
  "longitude": -112.38062,
  "bedrooms": 3,
  "bathrooms": 0.5,
  "maxGuests": 4,
  "pricePerNight": 396.27,
  "currency": "AED",
  "rating": 4.7,
  "ratingCount": 1205,
  "hostUserId": 143,
  "createdAt": "2026-05-08T19:22:11.440Z",
  "updatedAt": "2026-05-14T18:44:41.562Z"
}
Draftbit