showings / #238
- listingId
- House in Romaguerachester · Romaguerachester
- prospectUserId
- 59
- scheduledAt
- status
- cancelled
- notes
- Aliquid ante placeat tepidus.
- createdAt
Component variants
Medium
#238
#238
Small
showings/238 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/238" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/238"
);
const showing = await res.json();import type { Showing } from "https://example-data.com/types/showings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/showings/238"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/238"
)
showing = res.json() {
"id": 238,
"listingId": 90,
"prospectUserId": 59,
"scheduledAt": "2025-09-16T09:30:12.434Z",
"status": "cancelled",
"notes": "Aliquid ante placeat tepidus.",
"createdAt": "2025-09-20T04:53:22.038Z"
}